home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- public interface DocumentCollection extends Base {
- int getCount() throws NotesException;
-
- String getQuery() throws NotesException;
-
- Database getParent() throws NotesException;
-
- Document getFirstDocument() throws NotesException;
-
- Document getLastDocument() throws NotesException;
-
- Document getNextDocument(Document var1) throws NotesException;
-
- Document getPrevDocument(Document var1) throws NotesException;
-
- Document getNthDocument(int var1) throws NotesException;
-
- Document getNextDocument() throws NotesException;
-
- Document getPrevDocument() throws NotesException;
-
- Document getDocument(Document var1) throws NotesException;
-
- void addDocument(Document var1) throws NotesException;
-
- void addDocument(Document var1, boolean var2) throws NotesException;
-
- void deleteDocument(Document var1) throws NotesException;
-
- void FTSearch(String var1) throws NotesException;
-
- void FTSearch(String var1, int var2) throws NotesException;
-
- boolean isSorted() throws NotesException;
-
- void putAllInFolder(String var1) throws NotesException;
-
- void removeAll(boolean var1) throws NotesException;
-
- void removeAllFromFolder(String var1) throws NotesException;
-
- void stampAll(String var1, Object var2) throws NotesException;
-
- void updateAll() throws NotesException;
- }
-