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

  1. package lotus.domino;
  2.  
  3. public interface DateRange extends Base {
  4.    DateTime getStartDateTime() throws NotesException;
  5.  
  6.    void setStartDateTime(DateTime var1) throws NotesException;
  7.  
  8.    DateTime getEndDateTime() throws NotesException;
  9.  
  10.    void setEndDateTime(DateTime var1) throws NotesException;
  11.  
  12.    Session getParent() throws NotesException;
  13.  
  14.    String getText() throws NotesException;
  15.  
  16.    void setText(String var1) throws NotesException;
  17. }
  18.