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 / resources / DateFormatZoneData.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  2.0 KB  |  18 lines

  1. package java.text.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public final class DateFormatZoneData extends ListResourceBundle {
  6.    private static final String[][] kZoneStrings = new String[][]{{"PST", "Pacific Standard Time", "PST", "Pacific Daylight Time", "PDT", "San Francisco"}, {"MST", "Mountain Standard Time", "MST", "Mountain Daylight Time", "MDT", "Denver"}, {"PNT", "Mountain Standard Time", "MST", "Mountain Standard Time", "MST", "Phoenix"}, {"CST", "Central Standard Time", "CST", "Central Daylight Time", "CDT", "Chicago"}, {"EST", "Eastern Standard Time", "EST", "Eastern Daylight Time", "EDT", "New York"}, {"IET", "Eastern Standard Time", "EST", "Eastern Standard Time", "EST", "Indianapolis"}, {"PRT", "Atlantic Standard Time", "AST", "Atlantic Daylight Time", "ADT", "Halifax"}, {"HST", "Hawaii Standard Time", "HST", "Hawaii Daylight Time", "HDT", "Honolulu"}, {"AST", "Alaska Standard Time", "AST", "Alaska Daylight Time", "ADT", "Anchorage"}};
  7.    private static final String kLocalPatternChars = "GyMdkHmsSEDFwWahKz";
  8.    static final Object[][] contents;
  9.  
  10.    public Object[][] getContents() {
  11.       return contents;
  12.    }
  13.  
  14.    static {
  15.       contents = new Object[][]{{"zoneStrings", kZoneStrings}, {"localPatternChars", "GyMdkHmsSEDFwWahKz"}};
  16.    }
  17. }
  18.