01: package com.nwalsh.saxon;
02:
03: import org.xml.sax.SAXException;
04: import org.w3c.dom.*;
05:
06: import javax.xml.transform.TransformerException;
07:
08: import com.icl.saxon.om.NamePool;
09: import com.icl.saxon.output.Emitter;
10:
11: import com.nwalsh.saxon.Callout;
12:
13: /**
14: * <p>Utility class for the Verbatim extension (ignore this).</p>
15: *
16: * <p>$Id: FormatTextCallout.java,v 1.1 2006/05/31 17:21:20 mbatchelor Exp $</p>
17: *
18: * <p>Copyright (C) 2000, 2001 Norman Walsh.</p>
19: *
20: * <p><b>Change Log:</b></p>
21: * <dl>
22: * <dt>1.0</dt>
23: * <dd><p>Initial release.</p></dd>
24: * </dl>
25: *
26: * @author Norman Walsh
27: * <a href="mailto:ndw@nwalsh.com">ndw@nwalsh.com</a>
28: *
29: * @see Verbatim
30: *
31: * @version $Id: FormatTextCallout.java,v 1.1 2006/05/31 17:21:20 mbatchelor Exp $
32: **/
33:
34: public class FormatTextCallout extends FormatCallout {
35: public FormatTextCallout(NamePool nPool, boolean fo) {
36: super (nPool, fo);
37: }
38:
39: public void formatCallout(Emitter rtfEmitter, Callout callout) {
40: formatTextCallout(rtfEmitter, callout);
41: }
42: }
|