1 17 18 19 20 package org.apache.fop.render.rtf.rtflib.rtfdoc; 21 22 28 29 import java.io.IOException ; 30 31 34 35 public interface IRtfTextContainer { 36 43 RtfText newText(String str, RtfAttributes attr) throws IOException ; 44 45 51 RtfText newText(String str) throws IOException ; 52 53 57 void newLineBreak() throws IOException ; 58 59 63 RtfAttributes getTextContainerAttributes(); 64 } 65 | Popular Tags |