Methods Summary |
---|
public java.lang.String | asString()Return the class name in simple string form
return theClassName.asString();
|
public void | changeClass(ConstUtf8 newName)Change the class reference (not to be done lightly)
theClassName = newName;
theClassNameIndex = newName.getIndex();
|
public ConstUtf8 | className()Return the class name
return theClassName;
|
void | formatData(java.io.DataOutputStream b)
b.writeShort(theClassName.getIndex());
|
static com.sun.jdo.api.persistence.enhancer.classfile.ConstClass | read(java.io.DataInputStream input)
return new ConstClass (input.readUnsignedShort());
|
void | resolve(ConstantPool p)
theClassName = (ConstUtf8) p.constantAt(theClassNameIndex);
|
public int | tag()Return the tag for this constant
/* public accessors */
return MyTag;
|
public java.lang.String | toString()A printable representation
return "CONSTANTClass(" + indexAsString() + "): " + //NOI18N
"className(" + theClassName.toString() + ")";//NOI18N
|