Class Morph.Binder.RedirectionProxy.InstanceFieldConstructor
java.lang.Object
net.bytebuddy.implementation.bind.annotation.Morph.Binder.RedirectionProxy.InstanceFieldConstructor
- All Implemented Interfaces:
InstrumentedType.Prepareable
,Implementation
- Enclosing class:
- Morph.Binder.RedirectionProxy
@Enhance
protected static class Morph.Binder.RedirectionProxy.InstanceFieldConstructor
extends Object
implements Implementation
Creates an instance of the proxy when instrumenting an instance method.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
The byte code appender that implements the constructor.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
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
InstanceFieldConstructor
(TypeDescription instrumentedType) Creates a new instance field constructor 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
-
instrumentedType
The instrumented type.
-
-
Constructor Details
-
InstanceFieldConstructor
Creates a new instance field constructor implementation.- Parameters:
instrumentedType
- The instrumented type.
-
-
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)
.
-