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 33 public class RtfAfter extends RtfAfterBeforeBase { 34 35 public static final String FOOTER = "footer"; 36 37 public static final String [] FOOTER_ATTR = new String []{ 38 FOOTER 39 }; 40 41 RtfAfter(RtfSection parent, Writer w, RtfAttributes attrs) throws IOException { 42 super(parent, w, attrs); 43 } 44 45 49 protected void writeMyAttributes() throws IOException { 50 writeAttributes(attrib, FOOTER_ATTR); 51 } 52 } | Popular Tags |