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.classfiles. -
-
Uses of Attribute in gnu.bytecode
Subclasses of Attribute in gnu.bytecode Modifier and Type Class Description classAnnotationDefaultAttrRepresents a "AnnotationDefault" attribute.classCodeAttrRepresents the contents of a standard "Code" attribute.classConstantValueAttrclassEnclosingMethodAttrclassExceptionsAttrRepresents the contents of a standard "Exceptions" attribute.classInnerClassesAttrclassLineNumbersAttrRepresents the contents of a standard "LineNumberTable" attribute.classLocalVarsAttrclassMiscAttrclassRuntimeAnnotationsAttrRepresents a "RuntimeVisibleAnnotations" or "RuntimeInvisibleAnnotations" attribute.classSignatureAttrclassSourceDebugExtAttrRepresents the contents of a JSR-45 "SourceDebugExtension" attribute.classSourceFileAttrclassStackMapTableAttrRepresents a "StackMapTable" attribute, as added in Java 6.Methods in gnu.bytecode that return Attribute Modifier and Type Method Description static AttributeAttribute. get(AttrContainer container, String name)Find an Attribute by name, in an attribute cointainer.AttributeAttrContainer. getAttributes()Get the (first) Attribute of this container.AttributeClassType. getAttributes()AttributeCodeAttr. getAttributes()AttributeField. getAttributes()AttributeMethod. getAttributes()AttributeAttribute. getNext()Get the next Attribute belonging to getContainer().AttributeClassFileInput. readAttribute(String name, int length, AttrContainer container)Attributedump. readAttribute(String name, int length, AttrContainer container)Methods in gnu.bytecode with parameters of type Attribute Modifier and Type Method Description static EnclosingMethodAttrEnclosingMethodAttr. getFirstEnclosingMethod(Attribute attr)static InnerClassesAttrInnerClassesAttr. getFirstInnerClasses(Attribute attr)voidAttrContainer. setAttributes(Attribute attribute)Set the (list of) Attributes of this container.voidClassType. setAttributes(Attribute attributes)voidCodeAttr. setAttributes(Attribute attributes)voidField. setAttributes(Attribute attributes)voidMethod. setAttributes(Attribute attributes)voidAttribute. setNext(Attribute next)Set the next Attribute in the chain belonging to getContainer().
-