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 36 37 class RtfFontTable extends RtfElement { 38 39 RtfFontTable(RtfHeader h, Writer w) throws IOException { 40 super(h, w); 41 } 42 43 44 protected void writeRtfContent() throws IOException { 45 RtfFontManager.getInstance ().writeFonts ((RtfHeader)parent); 46 } 47 48 49 public boolean isEmpty() { 50 return false; 51 } 52 } 53 | Popular Tags |