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.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
Methods in org.objectweb.asm that return Attribute Modifier and Type Method Description protected AttributeAttribute. read(ClassReader cr, int off, int len, char[] buf, int codeOff, Label[] labels)Reads atypeattribute.Methods in org.objectweb.asm with parameters of type Attribute Modifier and Type Method Description voidClassReader. accept(ClassVisitor classVisitor, Attribute[] attrs, int flags)Makes the given visitor visit the Java class of thisClassReader.voidClassVisitor. visitAttribute(Attribute attr)Visits a non standard attribute of the class.voidClassWriter. visitAttribute(Attribute attr)voidFieldVisitor. visitAttribute(Attribute attr)Visits a non standard attribute of the field.voidMethodVisitor. visitAttribute(Attribute attr)Visits a non standard attribute of this method. -
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 attr)voidFieldNode. visitAttribute(Attribute attr)voidMethodNode. visitAttribute(Attribute attr) -
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 attr)voidCheckClassAdapter. visitAttribute(Attribute attr)voidCheckFieldAdapter. visitAttribute(Attribute attr)voidCheckMethodAdapter. visitAttribute(Attribute attr)voidTextifier. visitAttribute(Attribute attr)Prints a disassembled view of the given attribute.voidTraceClassVisitor. visitAttribute(Attribute attr)voidTraceFieldVisitor. visitAttribute(Attribute attr)voidTraceMethodVisitor. visitAttribute(Attribute attr)voidASMifier. visitClassAttribute(Attribute attr)abstract voidPrinter. visitClassAttribute(Attribute attr)Class attribute.voidTextifier. visitClassAttribute(Attribute attr)voidASMifier. visitFieldAttribute(Attribute attr)abstract voidPrinter. visitFieldAttribute(Attribute attr)Field attribute.voidTextifier. visitFieldAttribute(Attribute attr)voidASMifier. visitMethodAttribute(Attribute attr)abstract voidPrinter. visitMethodAttribute(Attribute attr)Method attribute.voidTextifier. visitMethodAttribute(Attribute attr)
-