Class TypeProxy.MethodCall
java.lang.Object
net.bytebuddy.implementation.auxiliary.TypeProxy.MethodCall
- All Implemented Interfaces:
InstrumentedType.Prepareable
,Implementation
- Enclosing class:
- TypeProxy
@Enhance(includeSyntheticFields=true)
protected class TypeProxy.MethodCall
extends Object
implements Implementation
An implementation for a method call of a
TypeProxy
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected class
Implementation of a byte code appender for aTypeProxy.MethodCall
.Nested classes/interfaces inherited from interface net.bytebuddy.implementation.Implementation
Implementation.Composable, Implementation.Compound, Implementation.Context, Implementation.Simple, Implementation.SpecialMethodInvocation, Implementation.Target
Nested classes/interfaces inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
InstrumentedType.Prepareable.NoOp
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MethodAccessorFactory
The method accessor factory to query for the super method invocation. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
MethodCall
(MethodAccessorFactory methodAccessorFactory) Creates a new method call implementation. -
Method Summary
Modifier and TypeMethodDescriptionappender
(Implementation.Target implementationTarget) Creates a byte code appender that determines the implementation of the instrumented type's methods.prepare
(InstrumentedType instrumentedType) Prepares a given instrumented type.
-
Field Details
-
methodAccessorFactory
The method accessor factory to query for the super method invocation.
-
-
Constructor Details
-
MethodCall
Creates a new method call implementation.- Parameters:
methodAccessorFactory
- The method accessor factory to query for the super method invocation.
-
-
Method Details
-
prepare
Prepares a given instrumented type.- Specified by:
prepare
in interfaceInstrumentedType.Prepareable
- Parameters:
instrumentedType
- The instrumented type in its current form.- Returns:
- The prepared instrumented type.
-
appender
Creates a byte code appender that determines the implementation of the instrumented type's methods.- Specified by:
appender
in interfaceImplementation
- Parameters:
implementationTarget
- The target of the current implementation.- Returns:
- A byte code appender for implementing methods delegated to this implementation. This byte code appender
is also responsible for handling methods that were added by this implementation on the call to
InstrumentedType.Prepareable.prepare(InstrumentedType)
.
-