类 RemappingFieldAdapter
java.lang.Object
org.beetl.ow2.asm.FieldVisitor
org.beetl.ow2.asm.commons.RemappingFieldAdapter
A
FieldVisitor adapter for type remapping.- 作者:
- Eugene Kuleshov
-
字段概要
从类继承的字段 org.beetl.ow2.asm.FieldVisitor
api, fv -
构造器概要
构造器限定符构造器说明protectedRemappingFieldAdapter(int api, FieldVisitor fv, Remapper remapper) RemappingFieldAdapter(FieldVisitor fv, Remapper remapper) -
方法概要
修饰符和类型方法说明visitAnnotation(String desc, boolean visible) Visits an annotation of the field.visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) Visits an annotation on the type of the field.从类继承的方法 org.beetl.ow2.asm.FieldVisitor
visitAttribute, visitEnd
-
构造器详细资料
-
RemappingFieldAdapter
-
RemappingFieldAdapter
-
-
方法详细资料
-
visitAnnotation
从类复制的说明:FieldVisitorVisits an annotation of the field.- 覆盖:
visitAnnotation在类中FieldVisitor- 参数:
desc- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- 返回:
- a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
-
visitTypeAnnotation
public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) 从类复制的说明:FieldVisitorVisits an annotation on the type of the field.- 覆盖:
visitTypeAnnotation在类中FieldVisitor- 参数:
typeRef- a reference to the annotated type. The sort of this type reference must beFIELD. SeeTypeReference.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.desc- the class descriptor of the annotation class.visible- true if the annotation is visible at runtime.- 返回:
- a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotation.
-