Package net.bytebuddy.implementation
Interface Implementation.Target.Factory
-
- All Known Implementing Classes:
RebaseImplementationTarget.Factory
,SubclassImplementationTarget.Factory
- Enclosing interface:
- Implementation.Target
public static interface Implementation.Target.Factory
A factory for creating anImplementation.Target
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Implementation.Target
make(TypeDescription instrumentedType, MethodGraph.Linked methodGraph, ClassFileVersion classFileVersion)
Creates an implementation target.
-
-
-
Method Detail
-
make
Implementation.Target make(TypeDescription instrumentedType, MethodGraph.Linked methodGraph, ClassFileVersion classFileVersion)
Creates an implementation target.- Parameters:
instrumentedType
- The instrumented type.methodGraph
- A method graph of the instrumented type.classFileVersion
- The type's class file version.- Returns:
- An implementation target for the instrumented type.
-
-