类 TypeAnnotationNode
java.lang.Object
cn.taketoday.bytecode.AnnotationVisitor
cn.taketoday.bytecode.tree.AnnotationNode
cn.taketoday.bytecode.tree.TypeAnnotationNode
- 直接已知子类:
LocalVariableAnnotationNode
A node that represents a type annotation.
- 作者:
- Eric Bruneton
-
字段概要
字段修饰符和类型字段说明The path to the annotated type argument, wildcard bound, array element type, or static outer type within the referenced type.intA reference to the annotated type.从类继承的字段 cn.taketoday.bytecode.tree.AnnotationNode
desc, values从类继承的字段 cn.taketoday.bytecode.AnnotationVisitor
av -
构造器概要
构造器构造器说明TypeAnnotationNode(int typeRef, TypePath typePath, String descriptor) Constructs a newAnnotationNode. -
方法概要
从类继承的方法 cn.taketoday.bytecode.tree.AnnotationNode
accept, accept, visit, visitAnnotation, visitArray, visitEnd, visitEnum
-
字段详细资料
-
typeRef
public int typeRefA reference to the annotated type. SeeTypeReference. -
typePath
The path to the annotated type argument, wildcard bound, array element type, or static outer type within the referenced type. May be null if the annotation targets 'typeRef' as a whole.
-
-
构造器详细资料
-
TypeAnnotationNode
Constructs a newAnnotationNode.- 参数:
typeRef- a reference to the annotated type. 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.descriptor- the class descriptor of the annotation class.
-