1 17 18 19 20 package org.apache.fop.render.rtf.rtflib.rtfdoc; 21 22 28 29 import java.io.Writer ; 30 import java.io.IOException ; 31 32 35 36 public class RtfLineBreak extends RtfElement { 37 38 RtfLineBreak(IRtfTextContainer parent, Writer w) throws IOException { 39 super((RtfContainer)parent, w); 40 } 41 42 46 protected void writeRtfContent() throws IOException { 47 writeControlWord("line"); 48 } 49 50 51 public boolean isEmpty() { 52 return false; 53 } 54 } | Popular Tags |