home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino.local;
-
- import lotus.domino.NotesException;
- import lotus.notes.JavaString;
-
- public class International extends NotesBase implements lotus.domino.International {
- private transient Session session;
-
- protected International() throws NotesException {
- }
-
- protected International(Session var1, int var2) throws NotesException {
- super(var2, 21);
- if (var1 == null) {
- throw new NotesException(4404, JavaString.resource.getString("missing_session_object"));
- } else {
- this.session = var1;
- var1.AddObject(this);
- }
- }
-
- public void recycle() throws NotesException {
- try {
- this.session.RemoveObject(this);
- } catch (NotesException var5) {
- } finally {
- super.Recycle();
- }
-
- }
-
- protected void InternalFinalize() throws NotesException {
- super.finalize();
- }
-
- public void finalize() throws NotesException {
- this.session.RemoveObject(this);
- this.InternalFinalize();
- }
-
- public boolean isCurrencySuffix() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1660);
- }
-
- public boolean isCurrencySpace() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1661);
- }
-
- public boolean isCurrencyZero() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1662);
- }
-
- public boolean isTime24Hour() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1663);
- }
-
- public boolean isDST() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1664);
- }
-
- public boolean isDateMDY() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1665);
- }
-
- public boolean isDateDMY() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1666);
- }
-
- public boolean isDateYMD() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1667);
- }
-
- public int getCurrencyDigits() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetInt(1668);
- }
-
- public int getTimeZone() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetInt(1669);
- }
-
- public String getAMString() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1670);
- }
-
- public String getPMString() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1671);
- }
-
- public String getCurrencySymbol() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1672);
- }
-
- public String getThousandsSep() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1673);
- }
-
- public String getDecimalSep() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1674);
- }
-
- public String getDateSep() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1675);
- }
-
- public String getTimeSep() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1676);
- }
-
- public String getYesterday() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1677);
- }
-
- public String getToday() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1678);
- }
-
- public String getTomorrow() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1679);
- }
-
- public lotus.domino.Session getParent() throws NotesException {
- ((NotesBase)this).CheckObject();
- return this.session;
- }
- }
-