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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface RichTextItem extends Item {
  6.    void addNewLine(int var1, boolean var2) throws NotesException;
  7.  
  8.    void addNewLine(int var1) throws NotesException;
  9.  
  10.    void addNewLine() throws NotesException;
  11.  
  12.    void addTab(int var1) throws NotesException;
  13.  
  14.    void addTab() throws NotesException;
  15.  
  16.    void addPageBreak() throws NotesException;
  17.  
  18.    void addPageBreak(RichTextParagraphStyle var1) throws NotesException;
  19.  
  20.    void appendDocLink(Document var1, String var2) throws NotesException;
  21.  
  22.    void appendDocLink(Document var1) throws NotesException;
  23.  
  24.    void appendDocLink(Database var1, String var2) throws NotesException;
  25.  
  26.    void appendDocLink(Database var1) throws NotesException;
  27.  
  28.    void appendDocLink(View var1, String var2) throws NotesException;
  29.  
  30.    void appendDocLink(View var1) throws NotesException;
  31.  
  32.    void appendDocLink(Document var1, String var2, String var3) throws NotesException;
  33.  
  34.    void appendDocLink(Database var1, String var2, String var3) throws NotesException;
  35.  
  36.    void appendDocLink(View var1, String var2, String var3) throws NotesException;
  37.  
  38.    void appendRTItem(RichTextItem var1) throws NotesException;
  39.  
  40.    void appendStyle(RichTextStyle var1) throws NotesException;
  41.  
  42.    void appendParagraphStyle(RichTextParagraphStyle var1) throws NotesException;
  43.  
  44.    void appendText(String var1) throws NotesException;
  45.  
  46.    EmbeddedObject embedObject(int var1, String var2, String var3, String var4) throws NotesException;
  47.  
  48.    EmbeddedObject getEmbeddedObject(String var1) throws NotesException;
  49.  
  50.    Vector getEmbeddedObjects() throws NotesException;
  51.  
  52.    String getFormattedText(boolean var1, int var2, int var3) throws NotesException;
  53. }
  54.