1 50 51 package com.lowagie.text.rtf; 52 53 import java.io.IOException ; 54 import java.io.OutputStream ; 55 56 import com.lowagie.text.rtf.document.RtfDocument; 57 58 66 public interface RtfBasicElement { 67 70 public static final byte[] OPEN_GROUP = "{".getBytes(); 71 74 public static final byte[] CLOSE_GROUP = "}".getBytes(); 75 78 public static final byte[] DELIMITER = " ".getBytes(); 79 82 public static final byte[] COMMA_DELIMITER = ";".getBytes(); 83 86 public static final double TWIPS_FACTOR = 20; 87 88 94 public byte[] write(); 95 96 102 public void writeContent(OutputStream out) throws IOException ; 103 104 109 public void setRtfDocument(RtfDocument doc); 110 111 116 public void setInTable(boolean inTable); 117 118 123 public void setInHeader(boolean inHeader); 124 } 125 | Popular Tags |