home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Vector;
-
- public interface EmbeddedObject extends Base {
- int EMBED_OBJECTLINK = 1452;
- int EMBED_OBJECT = 1453;
- int EMBED_ATTACHMENT = 1454;
-
- int activate(boolean var1) throws NotesException;
-
- void doVerb(String var1) throws NotesException;
-
- void extractFile(String var1) throws NotesException;
-
- String getClassName() throws NotesException;
-
- int getFileSize() throws NotesException;
-
- String getName() throws NotesException;
-
- int getObject() throws NotesException;
-
- RichTextItem getParent() throws NotesException;
-
- String getSource() throws NotesException;
-
- int getType() throws NotesException;
-
- Vector getVerbs() throws NotesException;
-
- void remove() throws NotesException;
- }
-