See: Description
| Interface | Description |
|---|---|
| Advice.Dispatcher |
A dispatcher for implementing advise.
|
| Advice.Dispatcher.Active.CodeTranslationVisitor.SuppressionHandler |
A suppression handler for optionally suppressing exceptions.
|
| Advice.Dispatcher.Resolved |
Represents a resolved dispatcher.
|
| Advice.Dispatcher.Resolved.ForMethodEnter |
Represents a resolved dispatcher for entering a method.
|
| Advice.Dispatcher.Resolved.ForMethodExit |
Represents a resolved dispatcher for exiting a method.
|
| AsmVisitorWrapper |
A class visitor wrapper is used in order to register an intermediate ASM
ClassVisitor which
is applied to the main type created by a DynamicType.Builder but not
to any AuxiliaryTypes, if any. |
| AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper |
A field visitor wrapper that allows for wrapping a
FieldVisitor defining a declared field. |
| AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper |
A method visitor wrapper that allows for wrapping a
MethodVisitor defining a declared method. |
| Class | Description |
|---|---|
| Advice |
Advice wrappers copy the code of blueprint methods to be executed before and/or after a matched method.
|
| Advice.AdviceVisitor |
A method visitor that weaves the advise methods' byte codes.
|
| Advice.AdviceVisitor.WithExceptionHandling |
An advise visitor that captures exceptions by weaving try-catch blocks around user code.
|
| Advice.AdviceVisitor.WithoutExceptionHandling |
An advise visitor that does not capture exceptions.
|
| Advice.Dispatcher.Active |
A dispatcher for active advise.
|
| Advice.Dispatcher.Active.CodeTranslationVisitor |
A visitor for translating an advise method's byte code for inlining into the instrumented method.
|
| Advice.Dispatcher.Active.CodeTranslationVisitor.ForMethodEnter |
A code translation visitor that retains the return value of the represented advise method.
|
| Advice.Dispatcher.Active.CodeTranslationVisitor.ForMethodExit |
A code translation visitor that discards the return value of the represented advise method.
|
| Advice.Dispatcher.Active.CodeTranslationVisitor.SuppressionHandler.Suppressing |
A suppression handler that suppresses a given throwable type.
|
| Advice.Dispatcher.Active.Resolved |
A resolved version of a dispatcher.
|
| Advice.Dispatcher.Active.Resolved.ForMethodEnter |
A resolved dispatcher for implementing method enter advise.
|
| Advice.Dispatcher.Active.Resolved.ForMethodExit |
A resolved dispatcher for implementing method exit advise.
|
| Advice.FrameTranslator |
A translator for frame found in parsed code.
|
| AsmVisitorWrapper.AbstractBase |
An abstract base implementation of an ASM visitor wrapper that does not set any flags.
|
| AsmVisitorWrapper.Compound |
An ordered, immutable chain of
AsmVisitorWrappers. |
| AsmVisitorWrapper.ForDeclaredFields |
An ASM visitor wrapper that allows to wrap declared fields of the instrumented type with a
AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper. |
| AsmVisitorWrapper.ForDeclaredFields.Entry |
An entry describing a field visitor wrapper paired with a matcher for fields to be wrapped.
|
| AsmVisitorWrapper.ForDeclaredMethods |
An ASM visitor wrapper that allows to wrap declared methods of the instrumented type with a
AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper. |
| AsmVisitorWrapper.ForDeclaredMethods.Entry |
An entry describing a method visitor wrapper paired with a matcher for fields to be wrapped.
|
| TypeConstantAdjustment.TypeConstantDissolvingClassVisitor |
A class visitor that checks a class file version for its support of storing class constants in the constant pool and remaps such constants
on discovery if that is not the case.
|
| TypeConstantAdjustment.TypeConstantDissolvingClassVisitor.TypeConstantDissolvingMethodVisitor |
A method visitor that remaps class constants to invocations of
Class.forName(String). |
| Enum | Description |
|---|---|
| Advice.Dispatcher.Active.CodeTranslationVisitor.SuppressionHandler.NoOp |
A non-operational suppression handler that does not suppress any method.
|
| Advice.Dispatcher.Inactive |
An implementation for inactive devise that does not write any byte code.
|
| AsmVisitorWrapper.NoOp |
A class visitor wrapper that does not apply any changes.
|
| TypeConstantAdjustment |
This class visitor wrapper ensures that class files of a version previous to Java 5 do not store class entries in the generated class's constant pool.
|
| Annotation Type | Description |
|---|---|
| Advice.Argument |
Indicates that the annotated parameter should be mapped to the parameter with index
Advice.Argument.value() of
the instrumented method. |
| Advice.Enter |
Indicates that the annotated parameter should be mapped to the value that is returned by the advise method that is annotated
by
Advice.OnMethodEnter. |
| Advice.FieldValue |
Indicates that the annotated parameter should be mapped to a field in the scope of the instrumented method.
|
| Advice.Ignored |
Indicates that the annotated parameter should always return a default value (i.e.
|
| Advice.OnMethodEnter |
Indicates that this method should be inlined before the matched method is invoked.
|
| Advice.OnMethodExit |
Indicates that this method should be inlined before the matched method is invoked.
|
| Advice.Origin |
Indicates that the annotated parameter should be mapped to a string representation of the instrumented method.
|
| Advice.Return |
Indicates that the annotated parameter should be mapped to the return value of the instrumented method.
|
| Advice.This |
Indicates that the annotated parameter should be mapped to the
this reference of the instrumented method. |
| Advice.Thrown |
Indicates that the annotated parameter should be mapped to the return value of the instrumented method.
|
Copyright © 2014–2016. All rights reserved.