home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / java / text / Annotation.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  649 b   |  18 lines

  1. package java.text;
  2.  
  3. public class Annotation {
  4.    private Object value;
  5.  
  6.    public Annotation(Object var1) {
  7.       this.value = var1;
  8.    }
  9.  
  10.    public Object getValue() {
  11.       return this.value;
  12.    }
  13.  
  14.    public String toString() {
  15.       return this.getClass().getName() + "[value=" + this.value + "]";
  16.    }
  17. }
  18.