Top Description Fields Constructors Methods
org.objectweb.asm.commons

public Class RecordComponentRemapper

extends RecordComponentVisitor
Class Inheritance
Imports
org.objectweb.asm.AnnotationVisitor, .Opcodes, .RecordComponentVisitor, .TypePath

A RecordComponentVisitor that remaps types with a Remapper.
Author
Remi Forax

Field Summary

Modifier and TypeField and Description
protected final Remapper
remapper

The remapper used to remap the types in the visited field.

Inherited from org.objectweb.asm.RecordComponentVisitor:
apidelegate

Constructor Summary

AccessConstructor and Description
public
RecordComponentRemapper(final RecordComponentVisitor
the record component visitor this remapper must delegate to.
recordComponentVisitor
,
final Remapper
the remapper to use to remap the types in the visited record component.
remapper
)

Constructs a new RecordComponentRemapper.

protected
RecordComponentRemapper(final int
the ASM API version supported by this remapper. Must be one of org.objectweb.asm.Opcodes#ASM8 or org.objectweb.asm.Opcodes#ASM9.
api
,
final RecordComponentVisitor
the record component visitor this remapper must delegate to.
recordComponentVisitor
,
final Remapper
the remapper to use to remap the types in the visited record component.
remapper
)

Constructs a new RecordComponentRemapper.

Method Summary

Modifier and TypeMethod and Description
protected AnnotationVisitor

Returns:

the newly created remapper.
createAnnotationRemapper
(final AnnotationVisitor
the AnnotationVisitor the remapper must delegate to.
annotationVisitor
)

Constructs a new remapper for annotations.
protected AnnotationVisitor

Returns:

the newly created remapper.
createAnnotationRemapper
(final String
the descriptor sof the visited annotation.
descriptor
,
final AnnotationVisitor
the AnnotationVisitor the remapper must delegate to.
annotationVisitor
)

Constructs a new remapper for annotations.

public AnnotationVisitor
visitAnnotation(final String
the class descriptor of the annotation class.
descriptor
,
final boolean
true if the annotation is visible at runtime.
visible
)

Overrides org.objectweb.asm.RecordComponentVisitor.visitAnnotation.

Visits an annotation of the record component.
public AnnotationVisitor
visitTypeAnnotation(final int
a reference to the annotated type. The sort of this type reference must be TypeReference#CLASS_TYPE_PARAMETER, TypeReference#CLASS_TYPE_PARAMETER_BOUND or TypeReference#CLASS_EXTENDS. See TypeReference.
typeRef
,
final TypePath
the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.
typePath
,
final String
the class descriptor of the annotation class.
descriptor
,
final boolean
true if the annotation is visible at runtime.
visible
)

Overrides org.objectweb.asm.RecordComponentVisitor.visitTypeAnnotation.

Visits an annotation on a type in the record component signature.
Inherited from org.objectweb.asm.RecordComponentVisitor:
getDelegatevisitAttributevisitEnd

Field Detail

remapperback to summary
protected final Remapper remapper

The remapper used to remap the types in the visited field.

Constructor Detail

RecordComponentRemapperback to summary
public RecordComponentRemapper(final RecordComponentVisitor recordComponentVisitor, final Remapper remapper)

Constructs a new RecordComponentRemapper. Subclasses must not use this constructor. Instead, they must use the RecordComponentRemapper(int, RecordComponentVisitor, Remapper) version.

Parameters
recordComponentVisitor:RecordComponentVisitor

the record component visitor this remapper must delegate to.

remapper:Remapper

the remapper to use to remap the types in the visited record component.

RecordComponentRemapperback to summary
protected RecordComponentRemapper(final int api, final RecordComponentVisitor recordComponentVisitor, final Remapper remapper)

Constructs a new RecordComponentRemapper.

Parameters
api:int

the ASM API version supported by this remapper. Must be one of org.objectweb.asm.Opcodes#ASM8 or org.objectweb.asm.Opcodes#ASM9.

recordComponentVisitor:RecordComponentVisitor

the record component visitor this remapper must delegate to.

remapper:Remapper

the remapper to use to remap the types in the visited record component.

Method Detail

createAnnotationRemapperback to summary
protected AnnotationVisitor createAnnotationRemapper(final AnnotationVisitor annotationVisitor)

Constructs a new remapper for annotations. The default implementation of this method returns a new AnnotationRemapper.

Parameters
annotationVisitor:AnnotationVisitor

the AnnotationVisitor the remapper must delegate to.

Returns:AnnotationVisitor

the newly created remapper.

Annotations
@Deprecated
createAnnotationRemapperback to summary
protected AnnotationVisitor createAnnotationRemapper(final String descriptor, final AnnotationVisitor annotationVisitor)

Constructs a new remapper for annotations. The default implementation of this method returns a new AnnotationRemapper.

Parameters
descriptor:String

the descriptor sof the visited annotation.

annotationVisitor:AnnotationVisitor

the AnnotationVisitor the remapper must delegate to.

Returns:AnnotationVisitor

the newly created remapper.

visitAnnotationback to summary
public AnnotationVisitor visitAnnotation(final String descriptor, final boolean visible)

Overrides org.objectweb.asm.RecordComponentVisitor.visitAnnotation.

Doc from org.objectweb.asm.RecordComponentVisitor.visitAnnotation.

Visits an annotation of the record component.

Parameters
descriptor:String

the class descriptor of the annotation class.

visible:boolean

true if the annotation is visible at runtime.

Returns:AnnotationVisitor

a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.

Annotations
@Override
visitTypeAnnotationback to summary
public AnnotationVisitor visitTypeAnnotation(final int typeRef, final TypePath typePath, final String descriptor, final boolean visible)

Overrides org.objectweb.asm.RecordComponentVisitor.visitTypeAnnotation.

Doc from org.objectweb.asm.RecordComponentVisitor.visitTypeAnnotation.

Visits an annotation on a type in the record component signature.

Parameters
typeRef:int

a reference to the annotated type. The sort of this type reference must be TypeReference#CLASS_TYPE_PARAMETER, TypeReference#CLASS_TYPE_PARAMETER_BOUND or TypeReference#CLASS_EXTENDS. See TypeReference.

typePath:TypePath

the path to the annotated type argument, wildcard bound, array element type, or static inner type within 'typeRef'. May be null if the annotation targets 'typeRef' as a whole.

descriptor:String

the class descriptor of the annotation class.

visible:boolean

true if the annotation is visible at runtime.

Returns:AnnotationVisitor

a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.

Annotations
@Override