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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface ViewEntry extends Base {
  6.    byte TYPE_DOCUMENT = 1;
  7.    byte TYPE_CATEGORY = 2;
  8.    byte TYPE_TOTAL = 3;
  9.  
  10.    boolean isDocument() throws NotesException;
  11.  
  12.    boolean isCategory() throws NotesException;
  13.  
  14.    boolean isTotal() throws NotesException;
  15.  
  16.    Object getParent() throws NotesException;
  17.  
  18.    Document getDocument() throws NotesException;
  19.  
  20.    int getSiblingCount() throws NotesException;
  21.  
  22.    int getChildCount() throws NotesException;
  23.  
  24.    int getDescendantCount() throws NotesException;
  25.  
  26.    int getIndentLevel() throws NotesException;
  27.  
  28.    int getColumnIndentLevel() throws NotesException;
  29.  
  30.    String getPosition(char var1) throws NotesException;
  31.  
  32.    String getNoteID() throws NotesException;
  33.  
  34.    String getUniversalID() throws NotesException;
  35.  
  36.    boolean isConflict() throws NotesException;
  37.  
  38.    Vector getColumnValues() throws NotesException;
  39.  
  40.    int getFTSearchScore() throws NotesException;
  41.  
  42.    boolean isValid() throws NotesException;
  43. }
  44.