home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Symantec Visual Cafe for Java 2.5
/
symantec-visual-cafe-2.5-database-dev-edition.iso
/
VPage
/
Java.bin
/
CLASSES.ZIP
/
sun
/
tools
/
debug
/
RemoteDouble.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-07-08
|
665 b
|
23 lines
package sun.tools.debug;
public class RemoteDouble extends RemoteValue {
private double value;
RemoteDouble(double var1) {
super(7);
this.value = var1;
}
public double get() {
return this.value;
}
public String typeName() {
return new String("double");
}
public String toString() {
return (new Double(this.value)).toString();
}
}