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 / RemoteBoolean.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  668 b   |  23 lines

  1. package sun.tools.debug;
  2.  
  3. public class RemoteBoolean extends RemoteValue {
  4.    private boolean value;
  5.  
  6.    RemoteBoolean(boolean var1) {
  7.       super(0);
  8.       this.value = var1;
  9.    }
  10.  
  11.    public boolean get() {
  12.       return this.value;
  13.    }
  14.  
  15.    public String typeName() {
  16.       return new String("boolean");
  17.    }
  18.  
  19.    public String toString() {
  20.       return (new Boolean(this.value)).toString();
  21.    }
  22. }
  23.