home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / netcast.z / ncjava10.jar / netscape / palomar / sgml / charHolder.class (.txt) next >
Encoding:
Java Class File  |  1998-02-26  |  721 b   |  20 lines

  1. package netscape.palomar.sgml;
  2.  
  3. class charHolder {
  4.    String _escape;
  5.    int _value;
  6.  
  7.    charHolder(String escape, int value) {
  8.       this._escape = escape;
  9.       this._value = value;
  10.    }
  11.  
  12.    public int getValue() {
  13.       return this._value;
  14.    }
  15.  
  16.    public String getEscape() {
  17.       return this._escape;
  18.    }
  19. }
  20.