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