Package net.bytebuddy.asm
Interface MemberSubstitution.Substitution.Chain.Step.Factory<V extends MemberSubstitution.Target>
-
- Type Parameters:
V
- The type of the matched target.
- All Known Implementing Classes:
MemberSubstitution.Substitution.Chain.Step.ForArgumentLoading
,MemberSubstitution.Substitution.Chain.Step.ForArgumentLoading.OfInstrumentedMethod
,MemberSubstitution.Substitution.Chain.Step.ForArgumentLoading.OfInstrumentedMethodThis
,MemberSubstitution.Substitution.Chain.Step.ForArgumentSubstitution.Factory
,MemberSubstitution.Substitution.Chain.Step.ForAssignment.Factory
,MemberSubstitution.Substitution.Chain.Step.ForDelegation.Factory
,MemberSubstitution.Substitution.Chain.Step.ForField.Read.Factory
,MemberSubstitution.Substitution.Chain.Step.ForField.Write.Factory
,MemberSubstitution.Substitution.Chain.Step.ForInvocation.Factory
,MemberSubstitution.Substitution.Chain.Step.OfOriginalExpression
,MemberSubstitution.Substitution.Chain.Step.Simple
- Enclosing interface:
- MemberSubstitution.Substitution.Chain.Step<U extends MemberSubstitution.Target>
public static interface MemberSubstitution.Substitution.Chain.Step.Factory<V extends MemberSubstitution.Target>
Resolves a substitution for an instrumented method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemberSubstitution.Substitution.Chain.Step<V>
make(Assigner assigner, Assigner.Typing typing, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Creates a substitution step for an instrumented method.
-
-
-
Method Detail
-
make
MemberSubstitution.Substitution.Chain.Step<V> make(Assigner assigner, Assigner.Typing typing, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Creates a substitution step for an instrumented method.- Parameters:
assigner
- The assigner to use.typing
- The typing to use.instrumentedType
- The instrumented type.instrumentedMethod
- The instrumented method.- Returns:
- The substitution step to apply.
-
-