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

  1. package lotus.notes;
  2.  
  3. public class International extends NotesBase {
  4.    private transient Session session;
  5.  
  6.    protected International() throws NotesException {
  7.    }
  8.  
  9.    protected International(Session var1, int var2) throws NotesException {
  10.       super(var2, 21);
  11.       if (var1 == null) {
  12.          throw new NotesException(JavaString.resource.getString("missing_session_object"));
  13.       } else {
  14.          this.session = var1;
  15.          var1.AddObject(this);
  16.       }
  17.    }
  18.  
  19.    protected void InternalFinalize() throws NotesException {
  20.       super.finalize();
  21.    }
  22.  
  23.    public void finalize() throws NotesException {
  24.       this.session.RemoveObject(this);
  25.       this.InternalFinalize();
  26.    }
  27.  
  28.    public int GetCppObj() {
  29.       return super.GetCppObj();
  30.    }
  31.  
  32.    public boolean isCurrencySuffix() throws NotesException {
  33.       ((NotesBase)this).CheckObject();
  34.       return ((NotesBase)this).PropGetBool(1660);
  35.    }
  36.  
  37.    public boolean isCurrencySpace() throws NotesException {
  38.       ((NotesBase)this).CheckObject();
  39.       return ((NotesBase)this).PropGetBool(1661);
  40.    }
  41.  
  42.    public boolean isCurrencyZero() throws NotesException {
  43.       ((NotesBase)this).CheckObject();
  44.       return ((NotesBase)this).PropGetBool(1662);
  45.    }
  46.  
  47.    public boolean isTime24Hour() throws NotesException {
  48.       ((NotesBase)this).CheckObject();
  49.       return ((NotesBase)this).PropGetBool(1663);
  50.    }
  51.  
  52.    public boolean isDST() throws NotesException {
  53.       ((NotesBase)this).CheckObject();
  54.       return ((NotesBase)this).PropGetBool(1664);
  55.    }
  56.  
  57.    public boolean isDateMDY() throws NotesException {
  58.       ((NotesBase)this).CheckObject();
  59.       return ((NotesBase)this).PropGetBool(1665);
  60.    }
  61.  
  62.    public boolean isDateDMY() throws NotesException {
  63.       ((NotesBase)this).CheckObject();
  64.       return ((NotesBase)this).PropGetBool(1666);
  65.    }
  66.  
  67.    public boolean isDateYMD() throws NotesException {
  68.       ((NotesBase)this).CheckObject();
  69.       return ((NotesBase)this).PropGetBool(1667);
  70.    }
  71.  
  72.    public int getCurrencyDigits() throws NotesException {
  73.       ((NotesBase)this).CheckObject();
  74.       return ((NotesBase)this).PropGetInt(1668);
  75.    }
  76.  
  77.    public int getTimeZone() throws NotesException {
  78.       ((NotesBase)this).CheckObject();
  79.       return ((NotesBase)this).PropGetInt(1669);
  80.    }
  81.  
  82.    public String getAMString() throws NotesException {
  83.       ((NotesBase)this).CheckObject();
  84.       return ((NotesBase)this).PropGetString(1670);
  85.    }
  86.  
  87.    public String getPMString() throws NotesException {
  88.       ((NotesBase)this).CheckObject();
  89.       return ((NotesBase)this).PropGetString(1671);
  90.    }
  91.  
  92.    public String getCurrencySymbol() throws NotesException {
  93.       ((NotesBase)this).CheckObject();
  94.       return ((NotesBase)this).PropGetString(1672);
  95.    }
  96.  
  97.    public String getThousandsSep() throws NotesException {
  98.       ((NotesBase)this).CheckObject();
  99.       return ((NotesBase)this).PropGetString(1673);
  100.    }
  101.  
  102.    public String getDecimalSep() throws NotesException {
  103.       ((NotesBase)this).CheckObject();
  104.       return ((NotesBase)this).PropGetString(1674);
  105.    }
  106.  
  107.    public String getDateSep() throws NotesException {
  108.       ((NotesBase)this).CheckObject();
  109.       return ((NotesBase)this).PropGetString(1675);
  110.    }
  111.  
  112.    public String getTimeSep() throws NotesException {
  113.       ((NotesBase)this).CheckObject();
  114.       return ((NotesBase)this).PropGetString(1676);
  115.    }
  116.  
  117.    public String getYesterday() throws NotesException {
  118.       ((NotesBase)this).CheckObject();
  119.       return ((NotesBase)this).PropGetString(1677);
  120.    }
  121.  
  122.    public String getToday() throws NotesException {
  123.       ((NotesBase)this).CheckObject();
  124.       return ((NotesBase)this).PropGetString(1678);
  125.    }
  126.  
  127.    public String getTomorrow() throws NotesException {
  128.       ((NotesBase)this).CheckObject();
  129.       return ((NotesBase)this).PropGetString(1679);
  130.    }
  131. }
  132.