Package rife.instrument
Class InitialTransformer
java.lang.Object
rife.instrument.RifeTransformer
rife.instrument.InitialTransformer
- All Implemented Interfaces:
ClassFileTransformer
This is a no-op transformer that is just used to output the initial
bytecode of classes that will be instrumented when the "rife.instrumentation.dump"
system property is set.
- Since:
- 1.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected byte[]
transformRife
(ClassLoader loader, String classNameInternal, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) This transform method will only be called when the class is not part of a core package.Methods inherited from class rife.instrument.RifeTransformer
transform
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.instrument.ClassFileTransformer
transform
-
Constructor Details
-
InitialTransformer
public InitialTransformer()
-
-
Method Details
-
transformRife
protected byte[] transformRife(ClassLoader loader, String classNameInternal, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) Description copied from class:RifeTransformer
This transform method will only be called when the class is not part of a core package.For the rest it functions exactly as the regular
transform
method.
-