Uses of Class
org.objectweb.asm.Attribute
-
Packages that use Attribute Package Description org.objectweb.asm Provides a small and fast bytecode manipulation framework.org.objectweb.asm.commons Provides some useful class and method adapters.org.objectweb.asm.tree Provides an ASM visitor that constructs a tree representation of the classes it visits.org.objectweb.asm.util Provides ASM visitors that can be useful for programming and debugging purposes. -
-
Uses of Attribute in org.objectweb.asm
Fields in org.objectweb.asm declared as Attribute Modifier and Type Field Description (package private) Attribute[]Context. attributePrototypesThe prototypes of the attributes that must be parsed in this class.private Attribute[]Attribute.Set. dataprivate AttributeClassWriter. firstAttributeThe first non standard attribute of this class.private AttributeFieldWriter. firstAttributeThe first non standard attribute of this field.private AttributeMethodWriter. firstAttributeThe first non standard attribute of this method.private AttributeMethodWriter. firstCodeAttributeThe first non standard attribute of the Code attribute.(package private) AttributeAttribute. nextAttributeThe next attribute in this attribute list (Attribute instances can be linked via this field to store a list of class, field, method or Code attributes).Methods in org.objectweb.asm that return Attribute Modifier and Type Method Description private Attribute[]ClassWriter. getAttributePrototypes()Returns the prototypes of the attributes used by this class, its fields and its methods.protected AttributeAttribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)Reads atypeattribute.private AttributeClassReader. readAttribute(Attribute[] attributePrototypes, java.lang.String type, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)Reads a non standard JVMS 'attribute' structure inClassReader.classFileBuffer.(package private) Attribute[]Attribute.Set. toArray()Methods in org.objectweb.asm with parameters of type Attribute Modifier and Type Method Description voidClassReader. accept(ClassVisitor classVisitor, Attribute[] attributePrototypes, int parsingOptions)Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of thisClassReader.private voidAttribute.Set. add(Attribute attribute)(package private) voidAttribute.Set. addAttributes(Attribute attributeList)private booleanAttribute.Set. contains(Attribute attribute)private AttributeClassReader. readAttribute(Attribute[] attributePrototypes, java.lang.String type, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)Reads a non standard JVMS 'attribute' structure inClassReader.classFileBuffer.voidClassVisitor. visitAttribute(Attribute attribute)Visits a non standard attribute of the class.voidClassWriter. visitAttribute(Attribute attribute)voidFieldVisitor. visitAttribute(Attribute attribute)Visits a non standard attribute of the field.voidFieldWriter. visitAttribute(Attribute attribute)voidMethodVisitor. visitAttribute(Attribute attribute)Visits a non standard attribute of this method.voidMethodWriter. visitAttribute(Attribute attribute) -
Uses of Attribute in org.objectweb.asm.commons
Subclasses of Attribute in org.objectweb.asm.commons Modifier and Type Class Description classModuleHashesAttributeA ModuleHashes attribute.classModuleResolutionAttributeA ModuleResolution attribute.classModuleTargetAttributeA ModuleTarget attribute.Methods in org.objectweb.asm.commons that return Attribute Modifier and Type Method Description protected AttributeModuleHashesAttribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)protected AttributeModuleResolutionAttribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeOffset, Label[] labels)protected AttributeModuleTargetAttribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeOffset, Label[] labels)Methods in org.objectweb.asm.commons with parameters of type Attribute Modifier and Type Method Description voidClassRemapper. visitAttribute(Attribute attribute) -
Uses of Attribute in org.objectweb.asm.tree
Fields in org.objectweb.asm.tree with type parameters of type Attribute Modifier and Type Field Description java.util.List<Attribute>ClassNode. attrsThe non standard attributes of this class.java.util.List<Attribute>FieldNode. attrsThe non standard attributes of this field.java.util.List<Attribute>MethodNode. attrsThe non standard attributes of this method.Methods in org.objectweb.asm.tree with parameters of type Attribute Modifier and Type Method Description voidClassNode. visitAttribute(Attribute attribute)voidFieldNode. visitAttribute(Attribute attribute)voidMethodNode. visitAttribute(Attribute attribute) -
Uses of Attribute in org.objectweb.asm.util
Methods in org.objectweb.asm.util with parameters of type Attribute Modifier and Type Method Description voidASMifier. visitAttribute(Attribute attribute)Visit a class, field or method attribute.voidCheckClassAdapter. visitAttribute(Attribute attribute)voidCheckFieldAdapter. visitAttribute(Attribute attribute)voidCheckMethodAdapter. visitAttribute(Attribute attribute)voidTextifier. visitAttribute(Attribute attribute)Prints a disassembled view of the given attribute.voidTraceClassVisitor. visitAttribute(Attribute attribute)voidTraceFieldVisitor. visitAttribute(Attribute attribute)voidTraceMethodVisitor. visitAttribute(Attribute attribute)voidASMifier. visitClassAttribute(Attribute attribute)abstract voidPrinter. visitClassAttribute(Attribute attribute)Class attribute.voidTextifier. visitClassAttribute(Attribute attribute)voidASMifier. visitFieldAttribute(Attribute attribute)abstract voidPrinter. visitFieldAttribute(Attribute attribute)Field attribute.voidTextifier. visitFieldAttribute(Attribute attribute)voidASMifier. visitMethodAttribute(Attribute attribute)abstract voidPrinter. visitMethodAttribute(Attribute attribute)Method attribute.voidTextifier. visitMethodAttribute(Attribute attribute)
-