Package rife.instrument
Class MetaDataTransformer
java.lang.Object
rife.instrument.RifeTransformer
rife.instrument.MetaDataTransformer
- All Implemented Interfaces:
ClassFileTransformer
This is a bytecode transformer that will modify classes so that they
receive the functionalities that are required to support meta-data
merging.
- 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
-
MetaDataTransformer
public MetaDataTransformer()
-
-
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.
-