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 RtfDocumentArea 37 extends RtfContainer { 38 private RtfSection currentSection; 39 40 41 RtfDocumentArea(RtfFile f, Writer w) throws IOException { 42 super(f, w); 43 } 44 45 50 public RtfSection newSection() throws IOException { 51 if (currentSection != null) { 52 currentSection.close(); 53 } 54 currentSection = new RtfSection(this, writer); 55 return currentSection; 56 } 57 } | Popular Tags |