Uses of Class
edu.rice.cs.cunit.classFile.attributes.AAttributeInfo

Packages that use AAttributeInfo
edu.rice.cs.cunit.classFile   
edu.rice.cs.cunit.classFile.attributes   
edu.rice.cs.cunit.classFile.attributes.visitors   
 

Uses of AAttributeInfo in edu.rice.cs.cunit.classFile
 

Fields in edu.rice.cs.cunit.classFile with type parameters of type AAttributeInfo
private  java.util.ArrayList<AAttributeInfo> ClassFile._attributes
          Attributes of the class.
private  java.util.ArrayList<AAttributeInfo> FieldInfo._attributes
          Attributes.
private  java.util.ArrayList<AAttributeInfo> MethodInfo._attributes
          Attributes.
 

Methods in edu.rice.cs.cunit.classFile that return AAttributeInfo
 AAttributeInfo ClassFile.getAttribute(java.lang.String name)
          Return the attribute with the specified name.
 AAttributeInfo FieldInfo.getAttribute(java.lang.String name)
          Return the attribute with the specified name.
 AAttributeInfo MethodInfo.getAttribute(java.lang.String name)
          Return the attribute with the specified name.
 

Methods in edu.rice.cs.cunit.classFile that return types with arguments of type AAttributeInfo
 java.util.ArrayList<AAttributeInfo> ClassFile.getAttributes()
          Accessor for the attributes list.
 java.util.ArrayList<AAttributeInfo> FieldInfo.getAttributes()
          Accessor for attributes.
 java.util.ArrayList<AAttributeInfo> MethodInfo.getAttributes()
          Accessor for attributes.
 

Methods in edu.rice.cs.cunit.classFile with parameters of type AAttributeInfo
 void ClassFile.addAttribute(AAttributeInfo newAttribute)
          Add an attribute to the class.
 

Method parameters in edu.rice.cs.cunit.classFile with type arguments of type AAttributeInfo
 void FieldInfo.setAttributes(java.util.ArrayList<AAttributeInfo> attributes)
          Mutator for attributes.
 

Constructors in edu.rice.cs.cunit.classFile with parameters of type AAttributeInfo
MethodInfo(short accessFlags, AUTFPoolInfo name, AUTFPoolInfo signature, AAttributeInfo[] attributes)
          Constructor
 

Uses of AAttributeInfo in edu.rice.cs.cunit.classFile.attributes
 

Subclasses of AAttributeInfo in edu.rice.cs.cunit.classFile.attributes
 class AAnnotationsAttributeInfo
          Represents an abstract Annotations attribute in a class file.
 class AMultipleAnnotationsAttributeInfo
          Represents an abstract annotations attribute in a class file that can contain annotations for multiple entities, like for method parameters or local variables.
 class AMultipleNamedAnnotationsAttributeInfo
           
 class AnnotationDefaultAttributeInfo
          Represents the AnnotationDefault attribute in a class file.
 class ASingleAnnotationsAttributeInfo
          Represents a single abstract Annotations attribute in a class file.
 class CodeAttributeInfo
          Represents the Code attribute in a class file.
 class ConstantValueAttributeInfo
          Represents the SourceFile attribute in a class file.
 class DeprecatedAttributeInfo
          Represents the Deprecated attribute in a class file.
 class EnclosingMethodAttributeInfo
          Represents the EnclosingMethod attribute in a class file.
 class ExceptionsAttributeInfo
          Represents the Exceptions attribute in a class file.
 class InnerClassesAttributeInfo
          Represents the InnerClasses attribute in a class file.
 class InstrumentationAttributeInfo
          Represents the Instrumentation attribute in a class file.
 class LineNumberTableAttributeInfo
          Represents the LineNumberTable attribute in a class file.
 class LocalVariableTableAttributeInfo
          Represents the LocalVariableTable attribute in a class file.
 class LocalVariableTypeTableAttributeInfo
          Represents the LocalVariableTyoeTable attribute in a class file.
 class RuntimeInvisibleAnnotationsAttributeInfo
          Represents the RuntimeVisibleAnnotations attribute in a class file.
 class RuntimeInvisibleLocalVariableAnnotationsAttributeInfo
          Represents the (non-standard) RuntimeInvisibleLocalVariableAnnotations attribute in a class file.
 class RuntimeInvisibleParameterAnnotationsAttributeInfo
          Represents the RuntimeInvisibleParameterAnnotations attribute in a class file.
 class RuntimeVisibleAnnotationsAttributeInfo
          Represents the RuntimeVisibleAnnotations attribute in a class file.
 class RuntimeVisibleLocalVariableAnnotationsAttributeInfo
          Represents the (non-standard) RuntimeInvisibleLocalVariableAnnotations attribute in a class file.
 class RuntimeVisibleParameterAnnotationsAttributeInfo
          Represents the RuntimeVisibleParameterAnnotations attribute in a class file.
 class SignatureAttributeInfo
          Represents the Signature attribute in a class file.
 class SourceFileAttributeInfo
          Represents the SourceFile attribute in a class file.
 class SyntheticAttributeInfo
          Represents the Synthetic attribute in a class file.
 class UnknownAttributeInfo
          Represents an unknown attribute in a class file.
 

Methods in edu.rice.cs.cunit.classFile.attributes that return AAttributeInfo
 AAttributeInfo[] CodeAttributeInfo.getAttributes()
          Return a copy of the attributes.
static AAttributeInfo AAttributeInfo.read(java.io.DataInputStream di, ConstantPool pool)
          Read from stream and return unresolved constant pool object.
 

Methods in edu.rice.cs.cunit.classFile.attributes with parameters of type AAttributeInfo
 void CodeAttributeInfo.setAttributes(AAttributeInfo[] a)
          Sets the attribute list.
 

Constructors in edu.rice.cs.cunit.classFile.attributes with parameters of type AAttributeInfo
CodeAttributeInfo(AUTFPoolInfo name, int maxStack, int maxLocals, byte[] code, CodeAttributeInfo.ExceptionTableEntry[] exceptionTableEntries, AAttributeInfo[] attributes, ConstantPool cp)
          Constructor.
 

Uses of AAttributeInfo in edu.rice.cs.cunit.classFile.attributes.visitors
 

Methods in edu.rice.cs.cunit.classFile.attributes.visitors with parameters of type AAttributeInfo
abstract  R ADefaultAttributeVisitor.defaultCase(AAttributeInfo host, D param)
          Abstract default case.