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 RtfPageBreak extends RtfElement { 37 38 RtfPageBreak(IRtfPageBreakContainer parent, Writer w) throws IOException { 39 super((RtfContainer)parent, w); 40 } 41 42 46 protected void writeRtfContent() throws IOException { 47 writeControlWord("page"); 48 } 49 50 53 public boolean isEmpty() { 54 return false; 55 } 56 } | Popular Tags |