Uses of Class
com.caucho.bytecode.Attribute

Packages that use Attribute
com.caucho.bytecode   
 

Uses of Attribute in com.caucho.bytecode
 

Subclasses of Attribute in com.caucho.bytecode
 class CodeAttribute
          Represents a generic attribute
 class CodeWriterAttribute
          Code generator attribute.
 class ExceptionsAttribute
          Represents a generic attribute
 class OpaqueAttribute
          Represents a generic attribute
 class SignatureAttribute
          Represents a generic attribute
 class SourceDebugExtensionAttribute
          Represents a generic attribute
 

Methods in com.caucho.bytecode that return Attribute
 Attribute Attribute.export(JavaClass cl, JavaClass target)
          Clones the attribute
 Attribute CodeAttribute.export(JavaClass source, JavaClass target)
          Clones the attribute
 Attribute ExceptionsAttribute.export(JavaClass cl, JavaClass target)
          Clones the attribute
 Attribute OpaqueAttribute.export(JavaClass cl, JavaClass target)
          Clones the attribute
 Attribute SignatureAttribute.export(JavaClass source, JavaClass target)
          Clones the attribute
 Attribute JavaClass.getAttribute(java.lang.String name)
          Returns the attribute.
 Attribute JavaField.getAttribute(java.lang.String name)
          Returns the attribute.
 Attribute JavaMethod.getAttribute(java.lang.String name)
          Returns the attribute.
 Attribute CodeAttribute.removeAttribute(java.lang.String name)
          Removes an attribute.
 Attribute JavaMethod.removeAttribute(java.lang.String name)
          Removes an attribute.
 

Methods in com.caucho.bytecode that return types with arguments of type Attribute
 java.util.ArrayList<Attribute> JavaClass.getAttributeList()
          Returns the methods.
 java.util.ArrayList<Attribute> CodeAttribute.getAttributes()
          Returns the exceptions.
 java.util.ArrayList<Attribute> JavaMethod.getAttributes()
          Returns the attribute.
 

Methods in com.caucho.bytecode with parameters of type Attribute
 void CodeAttribute.addAttribute(Attribute attr)
          Adds an attribute.
 void JavaClass.addAttribute(Attribute attr)
          Adds an attribute
 void JavaField.addAttribute(Attribute attr)
          Adds an attribute.
 void JavaMethod.addAttribute(Attribute attr)
          Adds an attribute.
 

Method parameters in com.caucho.bytecode with type arguments of type Attribute
 void CodeAttribute.setAttributes(java.util.ArrayList<Attribute> attributes)
          Returns the exceptions.