parambytes Data super(Constants.CONSTANT_Double); this.bytes = bytes;
super(Constants.CONSTANT_Double); this.bytes = bytes;
Initialize from another object. this(c.getBytes());
this(c.getBytes());
Initialize instance from file data.paramfile Input streamthrowIOException this(file.readDouble());
this(file.readDouble());
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.paramv Visitor object v.visitConstantDouble(this);
v.visitConstantDouble(this);
Dump constant double to file stream in binary format.paramfile Output file streamthrowIOException file.writeByte(tag); file.writeDouble(bytes);
file.writeByte(tag); file.writeDouble(bytes);
returndata, i.e., 8 bytes. return bytes;
return bytes;
returnDouble object return new Double(bytes);
return new Double(bytes);
parambytes. this.bytes = bytes;
this.bytes = bytes;
returnString representation. return super.toString() + "(bytes = " + bytes + ")";
return super.toString() + "(bytes = " + bytes + ")";