Uses of Class
org.objectweb.asm.ClassReader
-
Packages that use ClassReader 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.util Provides ASM visitors that can be useful for programming and debugging purposes. -
-
Uses of ClassReader in org.objectweb.asm
Fields in org.objectweb.asm declared as ClassReader Modifier and Type Field Description private ClassReaderSymbolTable. sourceClassReaderThe ClassReader from which this SymbolTable was constructed, or null if it was constructed from scratch.Methods in org.objectweb.asm that return ClassReader Modifier and Type Method Description (package private) ClassReaderSymbolTable. getSource()Returns the ClassReader from which this SymbolTable was constructed.Methods in org.objectweb.asm with parameters of type ClassReader Modifier and Type Method Description (package private) booleanMethodWriter. canCopyMethodAttributes(ClassReader source, boolean hasSyntheticAttribute, boolean hasDeprecatedAttribute, int descriptorIndex, int signatureIndex, int exceptionsOffset)Returns whether the attributes of this method can be copied from the attributes of the given method (assuming there is no method visitor between the given ClassReader and this MethodWriter).private voidSymbolTable. copyBootstrapMethods(ClassReader classReader, char[] charBuffer)Read the BootstrapMethods 'bootstrap_methods' array binary content and add them as entries of the SymbolTable.protected AttributeAttribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)Reads aAttribute.typeattribute.Constructors in org.objectweb.asm with parameters of type ClassReader Constructor Description ClassWriter(ClassReader classReader, int flags)Constructs a newClassWriterobject and enables optimizations for "mostly add" bytecode transformations.SymbolTable(ClassWriter classWriter, ClassReader classReader)Constructs a new SymbolTable for the given ClassWriter, initialized with the constant pool and bootstrap methods of the given ClassReader. -
Uses of ClassReader in org.objectweb.asm.commons
Methods in org.objectweb.asm.commons with parameters of type ClassReader 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) -
Uses of ClassReader in org.objectweb.asm.util
Methods in org.objectweb.asm.util with parameters of type ClassReader Modifier and Type Method Description static voidCheckClassAdapter. verify(ClassReader classReader, boolean printResults, java.io.PrintWriter printWriter)Checks the given class.static voidCheckClassAdapter. verify(ClassReader classReader, java.lang.ClassLoader loader, boolean printResults, java.io.PrintWriter printWriter)Checks the given class.
-