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.visitConstantDouble(this);
|
public final void | dump(java.io.DataOutputStream file)Dump constant double to file stream in binary format.
file.writeByte(tag);
file.writeDouble(bytes);
|
public final double | getBytes()
return bytes;
|
public java.lang.Object | getConstantValue(com.sun.org.apache.bcel.internal.classfile.ConstantPool cp)
return new Double(bytes);
|
public final void | setBytes(double bytes)
this.bytes = bytes;
|
public final java.lang.String | toString()
return super.toString() + "(bytes = " + bytes + ")";
|