Uses of Class
wt.loader.ConstantPoolInfo

Packages that use ConstantPoolInfo
wt.loader Defines Loader which is a java.lang.ClassLoader that supports Windchill class loading with AttributeInfo, FieldInfo and MethodInfo
 

Uses of ConstantPoolInfo in wt.loader
 

Fields in wt.loader declared as ConstantPoolInfo
(package private)  ConstantPoolInfo MethodInfo.name
           
(package private)  ConstantPoolInfo MethodInfo.signature
           
(package private)  ConstantPoolInfo FieldInfo.name
           
(package private)  ConstantPoolInfo FieldInfo.signature
           
(package private)  ConstantPoolInfo ConstantPoolInfo.arg1
           
(package private)  ConstantPoolInfo ConstantPoolInfo.arg2
           
(package private)  ConstantPoolInfo[] ClassFile.constantPool
           
(package private)  ConstantPoolInfo ClassFile.thisClass
           
(package private)  ConstantPoolInfo ClassFile.superClass
           
(package private)  ConstantPoolInfo[] ClassFile.interfaces
           
(package private)  ConstantPoolInfo AttributeInfo.name
           
 

Methods in wt.loader that return ConstantPoolInfo
 ConstantPoolInfo ConstantPoolInfo.inPool(ConstantPoolInfo[] pool)
          Returns the reference to the constant pool item that is already in pool, that matches this one.
 ConstantPoolInfo ClassFile.getConstantRef(short index)
           
 ConstantPoolInfo ClassFile.getConstantPoolItem(short index)
          Return a constant pool item from this class.
 

Methods in wt.loader with parameters of type ConstantPoolInfo
 boolean MethodInfo.read(DataInputStream di, ConstantPoolInfo[] pool)
          Read a method_info from the data stream.
 void MethodInfo.write(DataOutputStream dos, ConstantPoolInfo[] pool)
          Write out a method_info, do constant table fixups on the write.
 boolean FieldInfo.read(DataInputStream di, ConstantPoolInfo[] pool)
           
 void FieldInfo.write(DataOutputStream dos, ConstantPoolInfo[] pool)
           
 String FieldInfo.toString(ConstantPoolInfo[] pool)
           
 void ConstantPoolInfo.write(DataOutputStream dos, ConstantPoolInfo[] pool)
           
static short ConstantPoolInfo.indexOf(ConstantPoolInfo item, ConstantPoolInfo[] pool)
           
 boolean ConstantPoolInfo.isEqual(ConstantPoolInfo cp)
          Returns true if these constant pool items are identical.
 ConstantPoolInfo ConstantPoolInfo.inPool(ConstantPoolInfo[] pool)
          Returns the reference to the constant pool item that is already in pool, that matches this one.
 short ClassFile.addConstantPoolItem(ConstantPoolInfo item)
          Add a single constant pool item and return its index.
 void ClassFile.addConstantPoolItems(ConstantPoolInfo[] items)
          Add some items to the constant pool.
 boolean AttributeInfo.read(DataInputStream di, ConstantPoolInfo[] pool)
           
 void AttributeInfo.write(DataOutputStream dos, ConstantPoolInfo[] pool)
           
 String AttributeInfo.toString(ConstantPoolInfo[] pool)
           
 String AttributeInfo.toBoolean(ConstantPoolInfo[] pool)
           
 

Constructors in wt.loader with parameters of type ConstantPoolInfo
AttributeInfo(ConstantPoolInfo newName, byte[] newData)