Uses of Interface
com.jeffpalm.basic.bytecode.IConstantPool

Packages that use IConstantPool
com.jeffpalm.basic.bytecode   
com.jeffpalm.basic.bytecode.base   
com.jeffpalm.basic.bytecode.instr   
 

Uses of IConstantPool in com.jeffpalm.basic.bytecode
 

Methods in com.jeffpalm.basic.bytecode that return IConstantPool
 IConstantPool IClassFile.constantPool()
           
 IConstantPool IMethodRef.pool()
           
 IConstantPool IAttribute.pool()
           
 

Uses of IConstantPool in com.jeffpalm.basic.bytecode.base
 

Classes in com.jeffpalm.basic.bytecode.base that implement IConstantPool
 class ConstantPoolImpl
           
 

Methods in com.jeffpalm.basic.bytecode.base that return IConstantPool
 IConstantPool ClassFileImpl.constantPool()
           
 IConstantPool MethodRefImpl.pool()
           
 IConstantPool ExceptionTableEntry.pool()
           
 

Methods in com.jeffpalm.basic.bytecode.base with parameters of type IConstantPool
static MethodImpl MethodImpl.newInstance(IConstantPool pool, java.lang.String name, java.lang.String descriptor, int accessFlags)
           
static FieldImpl FieldImpl.newInstance(IConstantPool pool, java.lang.String name, java.lang.String descriptor, int accessFlags)
           
 

Constructors in com.jeffpalm.basic.bytecode.base with parameters of type IConstantPool
Code(IConstantPool cp)
           
CodeAttribute(IConstantPool pool)
           
FieldImpl(IConstantPool pool, java.lang.String name, java.lang.String descriptor, int accessFlags)
           
LineNumberTableAttribute(IConstantPool pool)
           
MethodImpl(IConstantPool pool, java.lang.String name, java.lang.String descriptor, int accessFlags)
           
MethodRefImpl(ICONSTANT_Methodref_info info, IConstantPool pool)
           
SourceFileAttribute(IConstantPool pool, java.lang.String sourceFile)
           
 

Uses of IConstantPool in com.jeffpalm.basic.bytecode.instr
 

Methods in com.jeffpalm.basic.bytecode.instr with parameters of type IConstantPool
 java.lang.String Instruction.format(IConstantPool cp)