Package net.bytebuddy.implementation
Interface MethodCall.MethodInvoker.Factory
-
- All Known Implementing Classes:
MethodCall.MethodInvoker.ForContextualInvocation.Factory
,MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory
,MethodCall.MethodInvoker.ForSuperMethodInvocation.Factory
,MethodCall.MethodInvoker.ForVirtualInvocation.Factory
,MethodCall.MethodInvoker.ForVirtualInvocation.WithImplicitType
- Enclosing interface:
- MethodCall.MethodInvoker
public static interface MethodCall.MethodInvoker.Factory
A factory for creating a method invoker.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodCall.MethodInvoker
make(TypeDescription instrumentedType)
Creates a method invoker.
-
-
-
Method Detail
-
make
MethodCall.MethodInvoker make(TypeDescription instrumentedType)
Creates a method invoker.- Parameters:
instrumentedType
- The instrumented type.- Returns:
- The method invoker to use.
-
-