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

  1. package lotus.domino;
  2.  
  3. import java.util.Date;
  4.  
  5. public interface DateTime extends Base {
  6.    void adjustHour(int var1) throws NotesException;
  7.  
  8.    void adjustHour(int var1, boolean var2) throws NotesException;
  9.  
  10.    void adjustMinute(int var1) throws NotesException;
  11.  
  12.    void adjustMinute(int var1, boolean var2) throws NotesException;
  13.  
  14.    void adjustSecond(int var1) throws NotesException;
  15.  
  16.    void adjustSecond(int var1, boolean var2) throws NotesException;
  17.  
  18.    void adjustDay(int var1) throws NotesException;
  19.  
  20.    void adjustDay(int var1, boolean var2) throws NotesException;
  21.  
  22.    void adjustMonth(int var1) throws NotesException;
  23.  
  24.    void adjustMonth(int var1, boolean var2) throws NotesException;
  25.  
  26.    void adjustYear(int var1) throws NotesException;
  27.  
  28.    void adjustYear(int var1, boolean var2) throws NotesException;
  29.  
  30.    void convertToZone(int var1, boolean var2) throws NotesException;
  31.  
  32.    void setAnyDate() throws NotesException;
  33.  
  34.    void setAnyTime() throws NotesException;
  35.  
  36.    void setNow() throws NotesException;
  37.  
  38.    int timeDifference(DateTime var1) throws NotesException;
  39.  
  40.    double timeDifferenceDouble(DateTime var1) throws NotesException;
  41.  
  42.    void setLocalDate(int var1, int var2, int var3) throws NotesException;
  43.  
  44.    void setLocalDate(int var1, int var2, int var3, boolean var4) throws NotesException;
  45.  
  46.    void setLocalTime(int var1, int var2, int var3, int var4) throws NotesException;
  47.  
  48.    void setLocalTime(Date var1) throws NotesException;
  49.  
  50.    String getGMTTime() throws NotesException;
  51.  
  52.    boolean isDST() throws NotesException;
  53.  
  54.    String getLocalTime() throws NotesException;
  55.  
  56.    void setLocalTime(String var1) throws NotesException;
  57.  
  58.    int getTimeZone() throws NotesException;
  59.  
  60.    String getZoneTime() throws NotesException;
  61.  
  62.    String getDateOnly() throws NotesException;
  63.  
  64.    Session getParent() throws NotesException;
  65.  
  66.    String getTimeOnly() throws NotesException;
  67.  
  68.    Date toJavaDate() throws NotesException;
  69. }
  70.