Methods Summary |
---|
public void | accept(com.sun.org.apache.bcel.internal.classfile.Visitor v)Called by objects that are traversing the nodes of the tree implicitely
defined by the contents of a Java class. I.e., the hierarchy of methods,
fields, attributes, etc. spawns a tree of objects.
v.visitConstantLong(this);
|
public final void | dump(java.io.DataOutputStream file)Dump constant long to file stream in binary format.
file.writeByte(tag);
file.writeLong(bytes);
|
public final long | getBytes()
return bytes;
|
public java.lang.Object | getConstantValue(com.sun.org.apache.bcel.internal.classfile.ConstantPool cp)
return new Long(bytes);
|
public final void | setBytes(long bytes)
this.bytes = bytes;
|
public final java.lang.String | toString()
return super.toString() + "(bytes = " + bytes + ")";
|