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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface EmbeddedObject extends Base {
  6.    int EMBED_OBJECTLINK = 1452;
  7.    int EMBED_OBJECT = 1453;
  8.    int EMBED_ATTACHMENT = 1454;
  9.  
  10.    int activate(boolean var1) throws NotesException;
  11.  
  12.    void doVerb(String var1) throws NotesException;
  13.  
  14.    void extractFile(String var1) throws NotesException;
  15.  
  16.    String getClassName() throws NotesException;
  17.  
  18.    int getFileSize() throws NotesException;
  19.  
  20.    String getName() throws NotesException;
  21.  
  22.    int getObject() throws NotesException;
  23.  
  24.    RichTextItem getParent() throws NotesException;
  25.  
  26.    String getSource() throws NotesException;
  27.  
  28.    int getType() throws NotesException;
  29.  
  30.    Vector getVerbs() throws NotesException;
  31.  
  32.    void remove() throws NotesException;
  33. }
  34.