Uses of Class
org.datanucleus.enhancer.asm.ClassReader
-
Packages that use ClassReader Package Description org.datanucleus.enhancer.asm ASM : a small and fast bytecode manipulation framework. -
-
Uses of ClassReader in org.datanucleus.enhancer.asm
Fields in org.datanucleus.enhancer.asm declared as ClassReader Modifier and Type Field Description private ClassReader
SymbolTable. sourceClassReader
The ClassReader from which this SymbolTable was constructed, or null if it was constructed from scratch.Methods in org.datanucleus.enhancer.asm that return ClassReader Modifier and Type Method Description (package private) ClassReader
SymbolTable. getSource()
Returns the ClassReader from which this SymbolTable was constructed.Methods in org.datanucleus.enhancer.asm with parameters of type ClassReader Modifier and Type Method Description (package private) boolean
MethodWriter. 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 void
SymbolTable. copyBootstrapMethods(ClassReader classReader, char[] charBuffer)
Read the BootstrapMethods 'bootstrap_methods' array binary content and add them as entries of the SymbolTable.protected Attribute
Attribute. read(ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, Label[] labels)
Reads aAttribute.type
attribute.Constructors in org.datanucleus.enhancer.asm with parameters of type ClassReader Constructor Description ClassWriter(ClassReader classReader, int flags)
Constructs a newClassWriter
object 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.
-