Uses of Class
org.cojen.classfile.Attribute

Packages that use Attribute
org.cojen.classfile   
org.cojen.classfile.attribute   
 

Uses of Attribute in org.cojen.classfile
 

Methods in org.cojen.classfile that return Attribute
 Attribute AttributeFactory.createAttribute(ConstantPool cp, String name, int length, DataInput din)
          Create an attribute, using the provided name to determine which type.
 Attribute[] FieldInfo.getAttributes()
           
 Attribute[] Attribute.getAttributes()
          Some attributes have sub-attributes.
 Attribute[] ClassFile.getAttributes()
           
 Attribute[] MethodInfo.getAttributes()
           
static Attribute Attribute.readFrom(ConstantPool cp, DataInput din, AttributeFactory attrFactory)
           
 

Methods in org.cojen.classfile with parameters of type Attribute
 void FieldInfo.addAttribute(Attribute attr)
           
 void ClassFile.addAttribute(Attribute attr)
          Add an attribute to this class.
 void MethodInfo.addAttribute(Attribute attr)
           
 

Uses of Attribute in org.cojen.classfile.attribute
 

Subclasses of Attribute in org.cojen.classfile.attribute
 class AnnotationsAttr
          Base class for annotations attributes defined for Java 5.
 class CodeAttr
          This class corresponds to the Code_attribute structure as defined in section 4.7.4 of The Java Virtual Machine Specification.
 class ConstantValueAttr
          This class corresponds to the ConstantValue_attribute structure as defined in section 4.7.3 of The Java Virtual Machine Specification.
 class DeprecatedAttr
          This class defines the Deprecated attribute introduced in JDK1.1.
 class EnclosingMethodAttr
           
 class ExceptionsAttr
          This class corresponds to the Exceptions_attribute structure as defined in section 4.7.5 of The Java Virtual Machine Specification.
 class InnerClassesAttr
          This class corresponds to the InnerClasses_attribute structure introduced in JDK1.1.
 class LineNumberTableAttr
          This class corresponds to the LineNumberTable_attribute structure as defined in section 4.7.6 of The Java Virtual Machine Specification.
 class LocalVariableTableAttr
          This class corresponds to the LocalVariableTable_attribute structure as defined in section 4.7.7 of The Java Virtual Machine Specification.
 class ParameterAnnotationsAttr
          Base class for parameter annotations attributes defined for Java 5.
 class RuntimeInvisibleAnnotationsAttr
          The class corresponds to the RuntimeInvisibleAnnotations_attribute structure defined for Java 5.
 class RuntimeInvisibleParameterAnnotationsAttr
          The class corresponds to the RuntimeInvisibleParameterAnnotations_attribute structure defined for Java 5.
 class RuntimeVisibleAnnotationsAttr
          The class corresponds to the RuntimeVisibleAnnotations_attribute structure defined for Java 5.
 class RuntimeVisibleParameterAnnotationsAttr
          The class corresponds to the RuntimeVisibleParameterAnnotations_attribute structure defined for Java 5.
 class SignatureAttr
          This class corresponds to the signature attribute structure, which is used to support generics.
 class SourceFileAttr
          This class corresponds to the SourceFile_attribute structure as defined in section 4.7.2 of The Java Virtual Machine Specification.
 class SyntheticAttr
          This class corresponds to the Synthetic_attribute structure introduced in JDK1.1.
 class UnknownAttr
           
 

Methods in org.cojen.classfile.attribute that return Attribute
 Attribute[] CodeAttr.getAttributes()
           
 

Methods in org.cojen.classfile.attribute with parameters of type Attribute
 void CodeAttr.addAttribute(Attribute attr)
           
 



Copyright © 2004-2011 Brian S O'Neill. All Rights Reserved.