Uses of Interface
net.bytebuddy.implementation.Implementation.Target.Factory
-
Packages that use Implementation.Target.Factory Package Description net.bytebuddy.dynamic.scaffold This package contains helper types and implementations that are responsible for the actual writing of a byte array representing a Java class.net.bytebuddy.dynamic.scaffold.inline All classes and types in this package are related to creating aDynamicType
by enhancing a given type.net.bytebuddy.dynamic.scaffold.subclass All classes and types in this package are related to creating aDynamicType
by creating a subclass of a given type. -
-
Uses of Implementation.Target.Factory in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold declared as Implementation.Target.Factory Modifier and Type Field Description private Implementation.Target.Factory
TypeWriter.Default.ForInlining.WithFullProcessing. implementationTargetFactory
The implementation target factory to use.Methods in net.bytebuddy.dynamic.scaffold with parameters of type Implementation.Target.Factory Modifier and Type Method Description MethodRegistry.Compiled
MethodRegistry.Default.Prepared. compile(Implementation.Target.Factory implementationTargetFactory, ClassFileVersion classFileVersion)
Compiles this prepared method registry.MethodRegistry.Compiled
MethodRegistry.Prepared. compile(Implementation.Target.Factory implementationTargetFactory, ClassFileVersion classFileVersion)
Compiles this prepared method registry.Constructors in net.bytebuddy.dynamic.scaffold with parameters of type Implementation.Target.Factory Constructor Description WithFullProcessing(TypeDescription instrumentedType, ClassFileVersion classFileVersion, TypeWriter.FieldPool fieldPool, TypeWriter.RecordComponentPool recordComponentPool, java.util.List<? extends DynamicType> auxiliaryTypes, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, MethodList<?> instrumentedMethods, RecordComponentList<RecordComponentDescription.InDefinedShape> recordComponents, LoadedTypeInitializer loadedTypeInitializer, TypeInitializer typeInitializer, TypeAttributeAppender typeAttributeAppender, AsmVisitorWrapper asmVisitorWrapper, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, Implementation.Context.Factory implementationContextFactory, TypeValidation typeValidation, ClassWriterStrategy classWriterStrategy, TypePool typePool, TypeDescription originalType, ClassFileLocator classFileLocator, MethodRegistry.Prepared methodRegistry, Implementation.Target.Factory implementationTargetFactory, MethodRebaseResolver methodRebaseResolver)
Creates a new inlining type writer that fully reprocesses a type. -
Uses of Implementation.Target.Factory in net.bytebuddy.dynamic.scaffold.inline
Classes in net.bytebuddy.dynamic.scaffold.inline that implement Implementation.Target.Factory Modifier and Type Class Description static class
RebaseImplementationTarget.Factory
A factory for creating aRebaseImplementationTarget
. -
Uses of Implementation.Target.Factory in net.bytebuddy.dynamic.scaffold.subclass
Classes in net.bytebuddy.dynamic.scaffold.subclass that implement Implementation.Target.Factory Modifier and Type Class Description static class
SubclassImplementationTarget.Factory
A factory for creating aSubclassImplementationTarget
.
-