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 / java / text / EntryPair.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  388 b   |  11 lines

  1. package java.text;
  2.  
  3. final class EntryPair {
  4.    public String entryName;
  5.    public int value;
  6.  
  7.    EntryPair() {
  8.       this.value = RuleBasedCollator.UNMAPPED;
  9.    }
  10. }
  11.