Class AsmField

java.lang.Object
gw.lang.reflect.java.asm.AsmField

public class AsmField extends Object
  • Field Details

    • _name

      private String _name
    • _modifiers

      private int _modifiers
    • _type

      private AsmType _type
    • _annotations

      private List<AsmAnnotation> _annotations
    • _owner

      private AsmClass _owner
    • _staticValue

      private Object _staticValue
  • Constructor Details

  • Method Details

    • getName

      public String getName()
    • getModifiers

      public int getModifiers()
    • isSynthetic

      public boolean isSynthetic()
    • isEnumConstant

      public boolean isEnumConstant()
    • getType

      public AsmType getType()
    • setType

      public void setType(AsmType type)
    • getDeclaringClass

      public AsmClass getDeclaringClass()
    • getAnnotations

      public List<AsmAnnotation> getAnnotations()
    • addAnnotation

      void addAnnotation(AsmAnnotation asmAnnotation)
    • isAnnotationPresent

      public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass)
    • getAnnotation

      public AsmAnnotation getAnnotation(Class annotationClass)
    • getStaticValue

      public Object getStaticValue()
    • toString

      public String toString()
      Overrides:
      toString in class Object