Uses of Class
gnu.bytecode.Attribute
-
Packages that use Attribute Package Description 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 Modifier and Type Class Description class
AnnotationDefaultAttr
Represents a "AnnotationDefault" attribute.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
RuntimeAnnotationsAttr
Represents a "RuntimeVisibleAnnotations" or "RuntimeInvisibleAnnotations" attribute.class
SignatureAttr
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 Modifier and Type Method Description static Attribute
Attribute. get(AttrContainer container, String name)
Find an Attribute by name, in an attribute cointainer.Attribute
AttrContainer. getAttributes()
Get the (first) Attribute of this container.Attribute
ClassType. getAttributes()
Attribute
CodeAttr. getAttributes()
Attribute
Field. getAttributes()
Attribute
Method. getAttributes()
Attribute
Attribute. getNext()
Get the next Attribute belonging to getContainer().Attribute
ClassFileInput. readAttribute(String name, int length, AttrContainer container)
Attribute
dump. readAttribute(String name, int length, AttrContainer container)
Methods in gnu.bytecode with parameters of type Attribute Modifier and Type Method Description static EnclosingMethodAttr
EnclosingMethodAttr. getFirstEnclosingMethod(Attribute attr)
static InnerClassesAttr
InnerClassesAttr. getFirstInnerClasses(Attribute attr)
void
AttrContainer. setAttributes(Attribute attribute)
Set the (list of) Attributes of this container.void
ClassType. setAttributes(Attribute attributes)
void
CodeAttr. setAttributes(Attribute attributes)
void
Field. setAttributes(Attribute attributes)
void
Method. setAttributes(Attribute attributes)
void
Attribute. setNext(Attribute next)
Set the next Attribute in the chain belonging to getContainer().
-