Note the term class file is used as defined in the chapter The class File Format of The Java Virtual Machine Specification, to mean a sequence of bytes in class file format, whether or not they reside in a file.
1.5 - | Method from java.lang.instrument.ClassFileTransformer Summary: |
|---|
| transform |
| Method from java.lang.instrument.ClassFileTransformer Detail: |
|---|
There are two kinds of transformers, determined by the
Once a transformer has been registered with
addTransformer ,
the transformer will be called for every new class definition and every class redefinition.
Retransformation capable transformers will also be called on every class retransformation.
The request for a new class definition is made with
ClassLoader.defineClass
or its native equivalents.
The request for a class redefinition is made with
Instrumentation.redefineClasses
or its native equivalents.
The request for a class retransformation is made with
Instrumentation.retransformClasses
or its native equivalents.
The transformer is called during the processing of the request, before the class file bytes
have been verified or applied.
When there are multiple transformers, transformations are composed by chaining the
Transformations are applied in the following order:
For retransformations, the retransformation incapable transformers are not
called, instead the result of the previous transformation is reused.
In all other cases, this method is called.
Within each of these groupings, transformers are called in the order registered.
Native transformers are provided by the
The input (via the
If the implementing method determines that no transformations are needed,
it should return In the retransform and redefine cases, the transformer must support the redefinition semantics: if a class that the transformer changed during initial definition is later retransformed or redefined, the transformer must insure that the second class output class file is a legal redefinition of the first output class file.
If the transformer throws an exception (which it doesn't catch),
subsequent transformers will still be called and the load, redefine
or retransform will still be attempted.
Thus, throwing an exception has the same effect as returning |