Package net.bytebuddy.asm
Interface MemberSubstitution.Substitution.Chain.Step.Factory
-
- All Known Implementing Classes:
MemberSubstitution.Substitution.Chain.Step.Simple
- Enclosing interface:
- MemberSubstitution.Substitution.Chain.Step
public static interface MemberSubstitution.Substitution.Chain.Step.Factory
Resolves a substitution for an instrumented method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemberSubstitution.Substitution.Chain.Step
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 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.
-
-