Uses of Interface
gnu.bytecode.AttrContainer

Packages that use AttrContainer
gnu.bytecode Contains classes to generate, read, write, and print Java bytecode in the form of .class files. 
gnu.expr Supports Expression, and various related classes need to compile programming languages. 
 

Uses of AttrContainer in gnu.bytecode
 

Classes in gnu.bytecode that implement AttrContainer
 class ClassType
           
 class CodeAttr
          Represents the contents of a standard "Code" attribute.
 class Field
           
 class Method
          Represents a method in a ClassType.
 

Methods in gnu.bytecode that return AttrContainer
 AttrContainer Attribute.getContainer()
          Return the Attribute container that contains this Attribute.
 

Methods in gnu.bytecode with parameters of type AttrContainer
 void Attribute.addToFrontOf(AttrContainer container)
          Add this to (the front of) of the specified attribute container.
static void Attribute.assignConstants(AttrContainer container, ClassType cl)
          Add any needed constant pool entries for all attributes in a container.
static int Attribute.count(AttrContainer container)
           
static Attribute Attribute.get(AttrContainer container, java.lang.String name)
          Find an Attribute by name, in an attribute cointainer.
static int Attribute.getLengthAll(AttrContainer container)
          Return the length of all the attributes (with headers) in bytes.
 void ClassTypeWriter.printAttributes(AttrContainer container)
           
 Attribute dump.readAttribute(java.lang.String name, int length, AttrContainer container)
           
 Attribute ClassFileInput.readAttribute(java.lang.String name, int length, AttrContainer container)
           
 int ClassFileInput.readAttributes(AttrContainer container)
           
 void Attribute.setContainer(AttrContainer container)
           
static void Attribute.writeAll(AttrContainer container, java.io.DataOutputStream dstr)
           
 

Uses of AttrContainer in gnu.expr
 

Classes in gnu.expr that implement AttrContainer
 class PairClassType
          A class type implemented as a pair of an interface and a class.