public interface DynamicTransformationObserver
DynamicAOPStrategy| Modifier and Type | Method and Description |
|---|---|
void |
constructorDynamicalyWrapped()
Notifies that during the transformation of target class, its
constructor execution joinpoints were wrapped due only to bindings added
dynamicaly. |
void |
fieldReadDynamicalyWrapped(javassist.CtField field)
Notifies that during the transformation of the target class, the
field read joinpoint was wrapped due only to bindings added
dynamicaly. |
void |
fieldWriteDynamicalyWrapped(javassist.CtField field)
Notifies that during the transformation of target class, the
field write joinpoint was wrapped due only to bindings added
dynamicaly. |
void |
transformationFinished(javassist.CtClass clazz,
javassist.CodeConverter converter)
Notifies the observer that the transformation of the target class is
finished.
|
void fieldReadDynamicalyWrapped(javassist.CtField field)
field read joinpoint was wrapped due only to bindings added
dynamicaly. This means that callers of field read joinpoint
may need to be hotswapped to invoke the field read wrapper.field - the field whose read joinpoint was dynamicaly wrapped.void fieldWriteDynamicalyWrapped(javassist.CtField field)
field write joinpoint was wrapped due only to bindings added
dynamicaly. This means that callers of field write joinpoint
may need to be hotswapped to invoke the field write wrapper.field - the field whose write joinpoint was dynamicaly wrapped.void constructorDynamicalyWrapped()
constructor execution joinpoints were wrapped due only to bindings added
dynamicaly. This means that callers of the constructor execution joinpoints
may need to be hotswapped to invoke the constructor execution wrappers.void transformationFinished(javassist.CtClass clazz,
javassist.CodeConverter converter)
Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.