home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Vector;
-
- public interface RichTextItem extends Item {
- void addNewLine(int var1, boolean var2) throws NotesException;
-
- void addNewLine(int var1) throws NotesException;
-
- void addNewLine() throws NotesException;
-
- void addTab(int var1) throws NotesException;
-
- void addTab() throws NotesException;
-
- void addPageBreak() throws NotesException;
-
- void addPageBreak(RichTextParagraphStyle var1) throws NotesException;
-
- void appendDocLink(Document var1, String var2) throws NotesException;
-
- void appendDocLink(Document var1) throws NotesException;
-
- void appendDocLink(Database var1, String var2) throws NotesException;
-
- void appendDocLink(Database var1) throws NotesException;
-
- void appendDocLink(View var1, String var2) throws NotesException;
-
- void appendDocLink(View var1) throws NotesException;
-
- void appendDocLink(Document var1, String var2, String var3) throws NotesException;
-
- void appendDocLink(Database var1, String var2, String var3) throws NotesException;
-
- void appendDocLink(View var1, String var2, String var3) throws NotesException;
-
- void appendRTItem(RichTextItem var1) throws NotesException;
-
- void appendStyle(RichTextStyle var1) throws NotesException;
-
- void appendParagraphStyle(RichTextParagraphStyle var1) throws NotesException;
-
- void appendText(String var1) throws NotesException;
-
- EmbeddedObject embedObject(int var1, String var2, String var3, String var4) throws NotesException;
-
- EmbeddedObject getEmbeddedObject(String var1) throws NotesException;
-
- Vector getEmbeddedObjects() throws NotesException;
-
- String getFormattedText(boolean var1, int var2, int var3) throws NotesException;
- }
-