home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Date;
-
- public interface DateTime extends Base {
- void adjustHour(int var1) throws NotesException;
-
- void adjustHour(int var1, boolean var2) throws NotesException;
-
- void adjustMinute(int var1) throws NotesException;
-
- void adjustMinute(int var1, boolean var2) throws NotesException;
-
- void adjustSecond(int var1) throws NotesException;
-
- void adjustSecond(int var1, boolean var2) throws NotesException;
-
- void adjustDay(int var1) throws NotesException;
-
- void adjustDay(int var1, boolean var2) throws NotesException;
-
- void adjustMonth(int var1) throws NotesException;
-
- void adjustMonth(int var1, boolean var2) throws NotesException;
-
- void adjustYear(int var1) throws NotesException;
-
- void adjustYear(int var1, boolean var2) throws NotesException;
-
- void convertToZone(int var1, boolean var2) throws NotesException;
-
- void setAnyDate() throws NotesException;
-
- void setAnyTime() throws NotesException;
-
- void setNow() throws NotesException;
-
- int timeDifference(DateTime var1) throws NotesException;
-
- double timeDifferenceDouble(DateTime var1) throws NotesException;
-
- void setLocalDate(int var1, int var2, int var3) throws NotesException;
-
- void setLocalDate(int var1, int var2, int var3, boolean var4) throws NotesException;
-
- void setLocalTime(int var1, int var2, int var3, int var4) throws NotesException;
-
- void setLocalTime(Date var1) throws NotesException;
-
- String getGMTTime() throws NotesException;
-
- boolean isDST() throws NotesException;
-
- String getLocalTime() throws NotesException;
-
- void setLocalTime(String var1) throws NotesException;
-
- int getTimeZone() throws NotesException;
-
- String getZoneTime() throws NotesException;
-
- String getDateOnly() throws NotesException;
-
- Session getParent() throws NotesException;
-
- String getTimeOnly() throws NotesException;
-
- Date toJavaDate() throws NotesException;
- }
-