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

  1. package lotus.domino;
  2.  
  3. public interface DocumentCollection extends Base {
  4.    int getCount() throws NotesException;
  5.  
  6.    String getQuery() throws NotesException;
  7.  
  8.    Database getParent() throws NotesException;
  9.  
  10.    Document getFirstDocument() throws NotesException;
  11.  
  12.    Document getLastDocument() throws NotesException;
  13.  
  14.    Document getNextDocument(Document var1) throws NotesException;
  15.  
  16.    Document getPrevDocument(Document var1) throws NotesException;
  17.  
  18.    Document getNthDocument(int var1) throws NotesException;
  19.  
  20.    Document getNextDocument() throws NotesException;
  21.  
  22.    Document getPrevDocument() throws NotesException;
  23.  
  24.    Document getDocument(Document var1) throws NotesException;
  25.  
  26.    void addDocument(Document var1) throws NotesException;
  27.  
  28.    void addDocument(Document var1, boolean var2) throws NotesException;
  29.  
  30.    void deleteDocument(Document var1) throws NotesException;
  31.  
  32.    void FTSearch(String var1) throws NotesException;
  33.  
  34.    void FTSearch(String var1, int var2) throws NotesException;
  35.  
  36.    boolean isSorted() throws NotesException;
  37.  
  38.    void putAllInFolder(String var1) throws NotesException;
  39.  
  40.    void removeAll(boolean var1) throws NotesException;
  41.  
  42.    void removeAllFromFolder(String var1) throws NotesException;
  43.  
  44.    void stampAll(String var1, Object var2) throws NotesException;
  45.  
  46.    void updateAll() throws NotesException;
  47. }
  48.