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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface View extends Base {
  6.    int SPACING_SINGLE = 0;
  7.    int SPACING_ONE_POINT_25 = 1;
  8.    int SPACING_ONE_POINT_50 = 2;
  9.    int SPACING_ONE_POINT_75 = 3;
  10.    int SPACING_DOUBLE = 4;
  11.  
  12.    void clear() throws NotesException;
  13.  
  14.    ViewNavigator createViewNav() throws NotesException;
  15.  
  16.    ViewNavigator createViewNav(int var1) throws NotesException;
  17.  
  18.    ViewNavigator createViewNavMaxLevel(int var1) throws NotesException;
  19.  
  20.    ViewNavigator createViewNavMaxLevel(int var1, int var2) throws NotesException;
  21.  
  22.    ViewNavigator createViewNavFrom(Object var1) throws NotesException;
  23.  
  24.    ViewNavigator createViewNavFrom(Object var1, int var2) throws NotesException;
  25.  
  26.    ViewNavigator createViewNavFromChildren(Object var1) throws NotesException;
  27.  
  28.    ViewNavigator createViewNavFromChildren(Object var1, int var2) throws NotesException;
  29.  
  30.    ViewNavigator createViewNavFromDescendants(Object var1) throws NotesException;
  31.  
  32.    ViewNavigator createViewNavFromDescendants(Object var1, int var2) throws NotesException;
  33.  
  34.    ViewNavigator createViewNavFromCategory(String var1) throws NotesException;
  35.  
  36.    ViewNavigator createViewNavFromCategory(String var1, int var2) throws NotesException;
  37.  
  38.    int FTSearch(String var1) throws NotesException;
  39.  
  40.    int FTSearch(String var1, int var2) throws NotesException;
  41.  
  42.    Vector getAliases() throws NotesException;
  43.  
  44.    int getBackgroundColor() throws NotesException;
  45.  
  46.    ViewColumn getColumn(int var1) throws NotesException;
  47.  
  48.    Vector getColumns() throws NotesException;
  49.  
  50.    int getColumnCount() throws NotesException;
  51.  
  52.    Vector getColumnNames() throws NotesException;
  53.  
  54.    DateTime getCreated() throws NotesException;
  55.  
  56.    int getHeaderLines() throws NotesException;
  57.  
  58.    DateTime getLastModified() throws NotesException;
  59.  
  60.    String getName() throws NotesException;
  61.  
  62.    Database getParent() throws NotesException;
  63.  
  64.    String getUniversalID() throws NotesException;
  65.  
  66.    Vector getReaders() throws NotesException;
  67.  
  68.    void setReaders(Vector var1) throws NotesException;
  69.  
  70.    int getRowLines() throws NotesException;
  71.  
  72.    int getSpacing() throws NotesException;
  73.  
  74.    int getTopLevelEntryCount() throws NotesException;
  75.  
  76.    Document getFirstDocument() throws NotesException;
  77.  
  78.    Document getLastDocument() throws NotesException;
  79.  
  80.    Document getNextDocument(Document var1) throws NotesException;
  81.  
  82.    Document getPrevDocument(Document var1) throws NotesException;
  83.  
  84.    Document getNextSibling(Document var1) throws NotesException;
  85.  
  86.    Document getPrevSibling(Document var1) throws NotesException;
  87.  
  88.    Document getParentDocument(Document var1) throws NotesException;
  89.  
  90.    Document getChild(Document var1) throws NotesException;
  91.  
  92.    Document getNthDocument(int var1) throws NotesException;
  93.  
  94.    Document getDocumentByKey(Vector var1) throws NotesException;
  95.  
  96.    Document getDocumentByKey(Vector var1, boolean var2) throws NotesException;
  97.  
  98.    Document getDocumentByKey(Object var1) throws NotesException;
  99.  
  100.    Document getDocumentByKey(Object var1, boolean var2) throws NotesException;
  101.  
  102.    ViewEntry getEntryByKey(Vector var1) throws NotesException;
  103.  
  104.    ViewEntry getEntryByKey(Vector var1, boolean var2) throws NotesException;
  105.  
  106.    ViewEntry getEntryByKey(Object var1) throws NotesException;
  107.  
  108.    ViewEntry getEntryByKey(Object var1, boolean var2) throws NotesException;
  109.  
  110.    DocumentCollection getAllDocumentsByKey(Vector var1) throws NotesException;
  111.  
  112.    DocumentCollection getAllDocumentsByKey(Vector var1, boolean var2) throws NotesException;
  113.  
  114.    DocumentCollection getAllDocumentsByKey(Object var1) throws NotesException;
  115.  
  116.    DocumentCollection getAllDocumentsByKey(Object var1, boolean var2) throws NotesException;
  117.  
  118.    ViewEntryCollection getAllEntriesByKey(Vector var1) throws NotesException;
  119.  
  120.    ViewEntryCollection getAllEntriesByKey(Vector var1, boolean var2) throws NotesException;
  121.  
  122.    ViewEntryCollection getAllEntriesByKey(Object var1) throws NotesException;
  123.  
  124.    ViewEntryCollection getAllEntriesByKey(Object var1, boolean var2) throws NotesException;
  125.  
  126.    ViewEntryCollection getAllEntries() throws NotesException;
  127.  
  128.    boolean isAutoUpdate() throws NotesException;
  129.  
  130.    void setAutoUpdate(boolean var1) throws NotesException;
  131.  
  132.    boolean isCalendar() throws NotesException;
  133.  
  134.    boolean isCategorized() throws NotesException;
  135.  
  136.    boolean isConflict() throws NotesException;
  137.  
  138.    boolean isDefaultView() throws NotesException;
  139.  
  140.    boolean isFolder() throws NotesException;
  141.  
  142.    boolean isHierarchical() throws NotesException;
  143.  
  144.    boolean isModified() throws NotesException;
  145.  
  146.    boolean isPrivate() throws NotesException;
  147.  
  148.    boolean isProtectReaders() throws NotesException;
  149.  
  150.    void setProtectReaders(boolean var1) throws NotesException;
  151.  
  152.    void refresh() throws NotesException;
  153.  
  154.    void remove() throws NotesException;
  155. }
  156.