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

  1. package lotus.domino;
  2.  
  3. public interface ViewEntryCollection extends Base {
  4.    int getCount() throws NotesException;
  5.  
  6.    String getQuery() throws NotesException;
  7.  
  8.    View getParent() throws NotesException;
  9.  
  10.    ViewEntry getFirstEntry() throws NotesException;
  11.  
  12.    ViewEntry getNextEntry() throws NotesException;
  13.  
  14.    ViewEntry getPrevEntry() throws NotesException;
  15.  
  16.    ViewEntry getLastEntry() throws NotesException;
  17.  
  18.    ViewEntry getNthEntry(int var1) throws NotesException;
  19.  
  20.    ViewEntry getNextEntry(ViewEntry var1) throws NotesException;
  21.  
  22.    ViewEntry getPrevEntry(ViewEntry var1) throws NotesException;
  23.  
  24.    ViewEntry getEntry(Object var1) throws NotesException;
  25.  
  26.    void addEntry(Object var1) throws NotesException;
  27.  
  28.    void addEntry(Object var1, boolean var2) throws NotesException;
  29.  
  30.    void deleteEntry(ViewEntry var1) throws NotesException;
  31.  
  32.    void FTSearch(String var1) throws NotesException;
  33.  
  34.    void FTSearch(String var1, int var2) throws NotesException;
  35.  
  36.    void putAllInFolder(String var1) throws NotesException;
  37.  
  38.    void removeAll(boolean var1) throws NotesException;
  39.  
  40.    void removeAllFromFolder(String var1) throws NotesException;
  41.  
  42.    void stampAll(String var1, Object var2) throws NotesException;
  43.  
  44.    void updateAll() throws NotesException;
  45. }
  46.