home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- public interface ViewEntryCollection extends Base {
- int getCount() throws NotesException;
-
- String getQuery() throws NotesException;
-
- View getParent() throws NotesException;
-
- ViewEntry getFirstEntry() throws NotesException;
-
- ViewEntry getNextEntry() throws NotesException;
-
- ViewEntry getPrevEntry() throws NotesException;
-
- ViewEntry getLastEntry() throws NotesException;
-
- ViewEntry getNthEntry(int var1) throws NotesException;
-
- ViewEntry getNextEntry(ViewEntry var1) throws NotesException;
-
- ViewEntry getPrevEntry(ViewEntry var1) throws NotesException;
-
- ViewEntry getEntry(Object var1) throws NotesException;
-
- void addEntry(Object var1) throws NotesException;
-
- void addEntry(Object var1, boolean var2) throws NotesException;
-
- void deleteEntry(ViewEntry var1) throws NotesException;
-
- void FTSearch(String var1) throws NotesException;
-
- void FTSearch(String var1, int var2) 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;
- }
-