Methods Summary |
---|
public void | read(java.io.DataInputStream cpStream)read a constant pool entry from a class stream.
index = cpStream.readUnsignedShort();
setValue("unresolved");
|
public void | resolve(ConstantPool constantPool)Resolve this constant pool entry with respect to its dependents in
the constant pool.
setValue(((Utf8CPInfo) constantPool.getEntry(index)).getValue());
super.resolve(constantPool);
|
public java.lang.String | toString()Print a readable version of the constant pool entry.
return "String Constant Pool Entry for "
+ getValue() + "[" + index + "]";
|