home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / lotus / domino / International.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-15  |  996 b   |  46 lines

  1. package lotus.domino;
  2.  
  3. public interface International extends Base {
  4.    String getAMString() throws NotesException;
  5.  
  6.    int getCurrencyDigits() throws NotesException;
  7.  
  8.    String getCurrencySymbol() throws NotesException;
  9.  
  10.    String getDateSep() throws NotesException;
  11.  
  12.    String getDecimalSep() throws NotesException;
  13.  
  14.    Session getParent() throws NotesException;
  15.  
  16.    String getPMString() throws NotesException;
  17.  
  18.    String getThousandsSep() throws NotesException;
  19.  
  20.    String getTimeSep() throws NotesException;
  21.  
  22.    int getTimeZone() throws NotesException;
  23.  
  24.    String getToday() throws NotesException;
  25.  
  26.    String getTomorrow() throws NotesException;
  27.  
  28.    String getYesterday() throws NotesException;
  29.  
  30.    boolean isCurrencySuffix() throws NotesException;
  31.  
  32.    boolean isCurrencySpace() throws NotesException;
  33.  
  34.    boolean isCurrencyZero() throws NotesException;
  35.  
  36.    boolean isDateMDY() throws NotesException;
  37.  
  38.    boolean isDateDMY() throws NotesException;
  39.  
  40.    boolean isDateYMD() throws NotesException;
  41.  
  42.    boolean isDST() throws NotesException;
  43.  
  44.    boolean isTime24Hour() throws NotesException;
  45. }
  46.