类 FieldNode

java.lang.Object
org.beetl.ow2.asm.FieldVisitor
org.beetl.ow2.asm.tree.FieldNode

public class FieldNode extends FieldVisitor
A node that represents a field.
作者:
Eric Bruneton
  • 字段详细资料

    • access

      public int access
      The field's access flags (see Opcodes). This field also indicates if the field is synthetic and/or deprecated.
    • name

      public String name
      The field's className.
    • desc

      public String desc
      The field's descriptor (see Type).
    • signature

      public String signature
      The field's signature. May be null.
    • value

      public Object value
      The field's initial value. This field, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
    • visibleAnnotations

      public List<AnnotationNode> visibleAnnotations
      The runtime visible annotations of this field. This list is a list of AnnotationNode objects. May be null.
    • invisibleAnnotations

      public List<AnnotationNode> invisibleAnnotations
      The runtime invisible annotations of this field. This list is a list of AnnotationNode objects. May be null.
    • visibleTypeAnnotations

      public List<TypeAnnotationNode> visibleTypeAnnotations
      The runtime visible type annotations of this field. This list is a list of TypeAnnotationNode objects. May be null.
    • invisibleTypeAnnotations

      public List<TypeAnnotationNode> invisibleTypeAnnotations
      The runtime invisible type annotations of this field. This list is a list of TypeAnnotationNode objects. May be null.
    • attrs

      public List<Attribute> attrs
      The non standard attributes of this field. This list is a list of Attribute objects. May be null.
  • 构造器详细资料

    • FieldNode

      public FieldNode(int access, String name, String desc, String signature, Object value)
      Constructs a new FieldNode. Subclasses must not use this constructor. Instead, they must use the FieldNode(int, int, String, String, String, Object) version.
      参数:
      access - the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated.
      name - the field's className.
      desc - the field's descriptor (see Type).
      signature - the field's signature.
      value - the field's initial value. This parameter, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
      抛出:
      IllegalStateException - If a subclass calls this constructor.
    • FieldNode

      public FieldNode(int api, int access, String name, String desc, String signature, Object value)
      Constructs a new FieldNode. Subclasses must not use this constructor.
      参数:
      api - the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4 or Opcodes.ASM5.
      access - the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated.
      name - the field's className.
      desc - the field's descriptor (see Type).
      signature - the field's signature.
      value - the field's initial value. This parameter, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
  • 方法详细资料

    • visitAnnotation

      public AnnotationVisitor visitAnnotation(String desc, boolean visible)
      从类复制的说明: FieldVisitor
      Visits 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)
      从类复制的说明: FieldVisitor
      Visits an annotation on the type of the field.
      覆盖:
      visitTypeAnnotation 在类中 FieldVisitor
      参数:
      typeRef - a reference to the annotated type. The sort of this type reference must be FIELD. See TypeReference.
      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.
    • visitAttribute

      public void visitAttribute(Attribute attr)
      从类复制的说明: FieldVisitor
      Visits a non standard attribute of the field.
      覆盖:
      visitAttribute 在类中 FieldVisitor
      参数:
      attr - an attribute.
    • visitEnd

      public void visitEnd()
      从类复制的说明: FieldVisitor
      Visits the end of the field. This method, which is the last one to be called, is used to inform the visitor that all the annotations and attributes of the field have been visited.
      覆盖:
      visitEnd 在类中 FieldVisitor
    • check

      public void check(int api)
      Checks that this field node is compatible with the given ASM API version. This methods checks that this node, and all its nodes recursively, do not contain elements that were introduced in more recent versions of the ASM API than the given version.
      参数:
      api - an ASM API version. Must be one of Opcodes.ASM4 or Opcodes.ASM5.
    • accept

      public void accept(ClassVisitor cv)
      Makes the given class visitor visit this field.
      参数:
      cv - a class visitor.