Uses of Class
org.objectweb.asm.SymbolTable.Entry
-
Packages that use SymbolTable.Entry Package Description org.objectweb.asm Provides a small and fast bytecode manipulation framework. -
-
Uses of SymbolTable.Entry in org.objectweb.asm
Fields in org.objectweb.asm declared as SymbolTable.Entry Modifier and Type Field Description private SymbolTable.Entry[]
SymbolTable. entries
A hash set of all the entries in this SymbolTable (this includes the constant pool entries, the bootstrap method entries and the type table entries).(package private) SymbolTable.Entry
SymbolTable.Entry. next
Another entry (and so on recursively) having the same hash code (modulo the size ofSymbolTable.entries
) as this one.private SymbolTable.Entry[]
SymbolTable. typeTable
An ASM specific type table used to temporarily store internal names that will not necessarily be stored in the constant pool.Methods in org.objectweb.asm that return SymbolTable.Entry Modifier and Type Method Description private SymbolTable.Entry
SymbolTable. addConstantMemberReference(int tag, java.lang.String owner, java.lang.String name, java.lang.String descriptor)
Adds a CONSTANT_Fieldref_info, CONSTANT_Methodref_info or CONSTANT_InterfaceMethodref_info to the constant pool of this symbol table.private SymbolTable.Entry
SymbolTable. get(int hashCode)
Returns the list of entries which can potentially have the given hash code.private SymbolTable.Entry
SymbolTable. put(SymbolTable.Entry entry)
Puts the given entry in theSymbolTable.entries
hash set.Methods in org.objectweb.asm with parameters of type SymbolTable.Entry Modifier and Type Method Description private void
SymbolTable. add(SymbolTable.Entry entry)
Adds the given entry in theSymbolTable.entries
hash set.private int
SymbolTable. addTypeInternal(SymbolTable.Entry entry)
Adds the given type Symbol toSymbolTable.typeTable
.private SymbolTable.Entry
SymbolTable. put(SymbolTable.Entry entry)
Puts the given entry in theSymbolTable.entries
hash set.
-