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

  1. package lotus.domino;
  2.  
  3. public interface ViewNavigator extends Base {
  4.    boolean gotoFirst() throws NotesException;
  5.  
  6.    ViewEntry getFirst() throws NotesException;
  7.  
  8.    boolean gotoFirstDocument() throws NotesException;
  9.  
  10.    ViewEntry getFirstDocument() throws NotesException;
  11.  
  12.    boolean gotoNext() throws NotesException;
  13.  
  14.    ViewEntry getNext() throws NotesException;
  15.  
  16.    boolean gotoNextCategory() throws NotesException;
  17.  
  18.    boolean gotoNextDocument() throws NotesException;
  19.  
  20.    ViewEntry getNextCategory() throws NotesException;
  21.  
  22.    ViewEntry getNextDocument() throws NotesException;
  23.  
  24.    boolean gotoPrev() throws NotesException;
  25.  
  26.    ViewEntry getPrev() throws NotesException;
  27.  
  28.    boolean gotoPrevCategory() throws NotesException;
  29.  
  30.    boolean gotoPrevDocument() throws NotesException;
  31.  
  32.    ViewEntry getPrevCategory() throws NotesException;
  33.  
  34.    ViewEntry getPrevDocument() throws NotesException;
  35.  
  36.    ViewEntry getCurrent() throws NotesException;
  37.  
  38.    boolean gotoLast() throws NotesException;
  39.  
  40.    ViewEntry getLast() throws NotesException;
  41.  
  42.    boolean gotoLastDocument() throws NotesException;
  43.  
  44.    ViewEntry getLastDocument() throws NotesException;
  45.  
  46.    boolean gotoPos(String var1, char var2) throws NotesException;
  47.  
  48.    ViewEntry getPos(String var1, char var2) throws NotesException;
  49.  
  50.    ViewEntry getNth(int var1) throws NotesException;
  51.  
  52.    boolean gotoChild() throws NotesException;
  53.  
  54.    ViewEntry getChild() throws NotesException;
  55.  
  56.    boolean gotoNextSibling() throws NotesException;
  57.  
  58.    ViewEntry getNextSibling() throws NotesException;
  59.  
  60.    boolean gotoPrevSibling() throws NotesException;
  61.  
  62.    ViewEntry getPrevSibling() throws NotesException;
  63.  
  64.    boolean gotoParent() throws NotesException;
  65.  
  66.    ViewEntry getParent() throws NotesException;
  67.  
  68.    boolean gotoEntry(Object var1) throws NotesException;
  69.  
  70.    boolean gotoNext(ViewEntry var1) throws NotesException;
  71.  
  72.    ViewEntry getNext(ViewEntry var1) throws NotesException;
  73.  
  74.    boolean gotoPrev(ViewEntry var1) throws NotesException;
  75.  
  76.    ViewEntry getPrev(ViewEntry var1) throws NotesException;
  77.  
  78.    boolean gotoChild(ViewEntry var1) throws NotesException;
  79.  
  80.    ViewEntry getChild(ViewEntry var1) throws NotesException;
  81.  
  82.    boolean gotoNextSibling(ViewEntry var1) throws NotesException;
  83.  
  84.    ViewEntry getNextSibling(ViewEntry var1) throws NotesException;
  85.  
  86.    boolean gotoPrevSibling(ViewEntry var1) throws NotesException;
  87.  
  88.    ViewEntry getPrevSibling(ViewEntry var1) throws NotesException;
  89.  
  90.    boolean gotoParent(ViewEntry var1) throws NotesException;
  91.  
  92.    ViewEntry getParent(ViewEntry var1) throws NotesException;
  93.  
  94.    int getCacheSize();
  95.  
  96.    void setCacheSize(int var1) throws NotesException;
  97.  
  98.    int getMaxLevel();
  99.  
  100.    void setMaxLevel(int var1) throws NotesException;
  101.  
  102.    View getParentView();
  103. }
  104.