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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface Document extends Base {
  6.    Item appendItemValue(String var1, Object var2) throws NotesException;
  7.  
  8.    Item appendItemValue(String var1) throws NotesException;
  9.  
  10.    Item appendItemValue(String var1, int var2) throws NotesException;
  11.  
  12.    Item appendItemValue(String var1, double var2) throws NotesException;
  13.  
  14.    boolean computeWithForm(boolean var1, boolean var2) throws NotesException;
  15.  
  16.    void copyAllItems(Document var1, boolean var2) throws NotesException;
  17.  
  18.    Item copyItem(Item var1, String var2) throws NotesException;
  19.  
  20.    Item copyItem(Item var1) throws NotesException;
  21.  
  22.    Document copyToDatabase(Database var1) throws NotesException;
  23.  
  24.    RichTextItem createRichTextItem(String var1) throws NotesException;
  25.  
  26.    Document createReplyMessage(boolean var1) throws NotesException;
  27.  
  28.    void encrypt() throws NotesException;
  29.  
  30.    EmbeddedObject getAttachment(String var1) throws NotesException;
  31.  
  32.    Vector getAuthors() throws NotesException;
  33.  
  34.    Vector getColumnValues() throws NotesException;
  35.  
  36.    DateTime getCreated() throws NotesException;
  37.  
  38.    Vector getEmbeddedObjects() throws NotesException;
  39.  
  40.    Vector getEncryptionKeys() throws NotesException;
  41.  
  42.    void setEncryptionKeys(Vector var1) throws NotesException;
  43.  
  44.    Item getFirstItem(String var1) throws NotesException;
  45.  
  46.    int getFTSearchScore() throws NotesException;
  47.  
  48.    DateTime getLastAccessed() throws NotesException;
  49.  
  50.    DateTime getLastModified() throws NotesException;
  51.  
  52.    Vector getFolderReferences() throws NotesException;
  53.  
  54.    Vector getItems() throws NotesException;
  55.  
  56.    Vector getItemValue(String var1) throws NotesException;
  57.  
  58.    String getItemValueString(String var1) throws NotesException;
  59.  
  60.    int getItemValueInteger(String var1) throws NotesException;
  61.  
  62.    double getItemValueDouble(String var1) throws NotesException;
  63.  
  64.    String getKey() throws NotesException;
  65.  
  66.    String getNameOfProfile() throws NotesException;
  67.  
  68.    String getNoteID() throws NotesException;
  69.  
  70.    Database getParentDatabase() throws NotesException;
  71.  
  72.    String getParentDocumentUNID() throws NotesException;
  73.  
  74.    View getParentView() throws NotesException;
  75.  
  76.    DocumentCollection getResponses() throws NotesException;
  77.  
  78.    String getSigner() throws NotesException;
  79.  
  80.    int getSize() throws NotesException;
  81.  
  82.    String getUniversalID() throws NotesException;
  83.  
  84.    void setUniversalID(String var1) throws NotesException;
  85.  
  86.    String getVerifier() throws NotesException;
  87.  
  88.    boolean hasEmbedded() throws NotesException;
  89.  
  90.    boolean hasItem(String var1) throws NotesException;
  91.  
  92.    boolean isEncryptOnSend() throws NotesException;
  93.  
  94.    void setEncryptOnSend(boolean var1) throws NotesException;
  95.  
  96.    boolean isNewNote() throws NotesException;
  97.  
  98.    boolean isProfile() throws NotesException;
  99.  
  100.    boolean isResponse() throws NotesException;
  101.  
  102.    boolean isSigned() throws NotesException;
  103.  
  104.    boolean isValid() throws NotesException;
  105.  
  106.    boolean isSaveMessageOnSend() throws NotesException;
  107.  
  108.    void setSaveMessageOnSend(boolean var1) throws NotesException;
  109.  
  110.    boolean isSentByAgent() throws NotesException;
  111.  
  112.    boolean isSignOnSend() throws NotesException;
  113.  
  114.    void setSignOnSend(boolean var1) throws NotesException;
  115.  
  116.    void makeResponse(Document var1) throws NotesException;
  117.  
  118.    void putInFolder(String var1) throws NotesException;
  119.  
  120.    void putInFolder(String var1, boolean var2) throws NotesException;
  121.  
  122.    boolean remove(boolean var1) throws NotesException;
  123.  
  124.    void removeFromFolder(String var1) throws NotesException;
  125.  
  126.    void removeFromFolder(String var1, boolean var2) throws NotesException;
  127.  
  128.    void removeItem(String var1) throws NotesException;
  129.  
  130.    boolean renderToRTItem(RichTextItem var1) throws NotesException;
  131.  
  132.    Item replaceItemValue(String var1, Object var2) throws NotesException;
  133.  
  134.    boolean save(boolean var1, boolean var2, boolean var3) throws NotesException;
  135.  
  136.    boolean save(boolean var1, boolean var2) throws NotesException;
  137.  
  138.    boolean save(boolean var1) throws NotesException;
  139.  
  140.    boolean save() throws NotesException;
  141.  
  142.    void send(boolean var1, Vector var2) throws NotesException;
  143.  
  144.    void send(Vector var1) throws NotesException;
  145.  
  146.    void send(boolean var1, String var2) throws NotesException;
  147.  
  148.    void send(String var1) throws NotesException;
  149.  
  150.    void sign() throws NotesException;
  151. }
  152.