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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface Item extends Base {
  6.    int ERRORITEM = 256;
  7.    int UNAVAILABLE = 512;
  8.    int TEXT = 1280;
  9.    int NUMBERS = 768;
  10.    int DATETIMES = 1024;
  11.    int NAMES = 1074;
  12.    int READERS = 1075;
  13.    int AUTHORS = 1076;
  14.    int RICHTEXT = 1;
  15.    int USERID = 1792;
  16.    int FORMULA = 1536;
  17.    int COLLATION = 2;
  18.    int NOTEREFS = 4;
  19.    int NOTELINKS = 7;
  20.    int ATTACHMENT = 1084;
  21.    int OTHEROBJECT = 1085;
  22.    int UNKNOWN = 0;
  23.    int ICON = 6;
  24.    int SIGNATURE = 8;
  25.    int USERDATA = 14;
  26.    int EMBEDDEDOBJECT = 1090;
  27.    int QUERYCD = 15;
  28.    int ACTIONCD = 16;
  29.    int ASSISTANTINFO = 17;
  30.    int VIEWMAPDATA = 18;
  31.    int VIEWMAPLAYOUT = 19;
  32.    int LSOBJECT = 20;
  33.    int HTML = 21;
  34.  
  35.    String abstractText(int var1, boolean var2, boolean var3) throws NotesException;
  36.  
  37.    void appendToTextList(Vector var1) throws NotesException;
  38.  
  39.    void appendToTextList(String var1) throws NotesException;
  40.  
  41.    boolean containsValue(Object var1) throws NotesException;
  42.  
  43.    Item copyItemToDocument(Document var1, String var2) throws NotesException;
  44.  
  45.    Item copyItemToDocument(Document var1) throws NotesException;
  46.  
  47.    DateTime getDateTimeValue() throws NotesException;
  48.  
  49.    void setDateTimeValue(DateTime var1) throws NotesException;
  50.  
  51.    DateTime getLastModified() throws NotesException;
  52.  
  53.    String getName() throws NotesException;
  54.  
  55.    Document getParent() throws NotesException;
  56.  
  57.    String getText() throws NotesException;
  58.  
  59.    String getText(int var1) throws NotesException;
  60.  
  61.    int getType() throws NotesException;
  62.  
  63.    Vector getValues() throws NotesException;
  64.  
  65.    void setValues(Vector var1) throws NotesException;
  66.  
  67.    String getValueString() throws NotesException;
  68.  
  69.    void setValueString(String var1) throws NotesException;
  70.  
  71.    double getValueDouble() throws NotesException;
  72.  
  73.    void setValueDouble(double var1) throws NotesException;
  74.  
  75.    int getValueInteger() throws NotesException;
  76.  
  77.    void setValueInteger(int var1) throws NotesException;
  78.  
  79.    int getValueLength() throws NotesException;
  80.  
  81.    boolean isAuthors() throws NotesException;
  82.  
  83.    void setAuthors(boolean var1) throws NotesException;
  84.  
  85.    boolean isEncrypted() throws NotesException;
  86.  
  87.    void setEncrypted(boolean var1) throws NotesException;
  88.  
  89.    boolean isNames() throws NotesException;
  90.  
  91.    void setNames(boolean var1) throws NotesException;
  92.  
  93.    boolean isProtected() throws NotesException;
  94.  
  95.    void setProtected(boolean var1) throws NotesException;
  96.  
  97.    boolean isReaders() throws NotesException;
  98.  
  99.    void setReaders(boolean var1) throws NotesException;
  100.  
  101.    boolean isSaveToDisk() throws NotesException;
  102.  
  103.    void setSaveToDisk(boolean var1) throws NotesException;
  104.  
  105.    boolean isSigned() throws NotesException;
  106.  
  107.    void setSigned(boolean var1) throws NotesException;
  108.  
  109.    boolean isSummary() throws NotesException;
  110.  
  111.    void setSummary(boolean var1) throws NotesException;
  112.  
  113.    void remove() throws NotesException;
  114. }
  115.