Uses of Class
gnu.bytecode.Attribute

Packages that use Attribute
gnu.bytecode Contains classes to generate, read, write, and print Java bytecode in the form of .class files. 
 

Uses of Attribute in gnu.bytecode
 

Subclasses of Attribute in gnu.bytecode
 class CodeAttr
          Represents the contents of a standard "Code" attribute.
 class ConstantValueAttr
           
 class EnclosingMethodAttr
           
 class ExceptionsAttr
          Represents the contents of a standard "Exceptions" attribute.
 class InnerClassesAttr
           
 class LineNumbersAttr
          Represents the contents of a standard "LineNumberTable" attribute.
 class LocalVarsAttr
           
 class MiscAttr
           
 class SourceDebugExtAttr
          Represents the contents of a JSR-45 "SourceDebugExtension" attribute.
 class SourceFileAttr
           
 class StackMapTableAttr
          Represents a "StackMapTable" attribute, as added in Java 6.
 

Methods in gnu.bytecode that return Attribute
static Attribute Attribute.get(AttrContainer container, java.lang.String name)
          Find an Attribute by name, in an attribute cointainer.
 Attribute CodeAttr.getAttributes()
           
 Attribute Method.getAttributes()
           
 Attribute ClassType.getAttributes()
           
 Attribute Field.getAttributes()
           
 Attribute AttrContainer.getAttributes()
          Get the (first) Attribute of this container.
 Attribute Attribute.getNext()
          Get the next Attribute belonging to getContainer().
 Attribute dump.readAttribute(java.lang.String name, int length, AttrContainer container)
           
 Attribute ClassFileInput.readAttribute(java.lang.String name, int length, AttrContainer container)
           
 

Methods in gnu.bytecode with parameters of type Attribute
static EnclosingMethodAttr EnclosingMethodAttr.getFirstEnclosingMethod(Attribute attr)
           
static InnerClassesAttr InnerClassesAttr.getFirstInnerClasses(Attribute attr)
           
 void CodeAttr.setAttributes(Attribute attributes)
           
 void Method.setAttributes(Attribute attributes)
           
 void ClassType.setAttributes(Attribute attributes)
           
 void Field.setAttributes(Attribute attributes)
           
 void AttrContainer.setAttributes(Attribute attribute)
          Set the (list of) Attributes of this container.
 void Attribute.setNext(Attribute next)
          Set the next Attribute in the chain belonging to getContainer().