KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nwalsh > saxon > FormatTextCallout


1 package com.nwalsh.saxon;
2
3 import org.xml.sax.SAXException JavaDoc;
4 import org.w3c.dom.*;
5
6 import javax.xml.transform.TransformerException JavaDoc;
7
8 import com.icl.saxon.om.NamePool;
9 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 2001/07/16 21:23:57 nwalsh 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 2001/07/16 21:23:57 nwalsh 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,
40                 Callout callout) {
41     formatTextCallout(rtfEmitter, callout);
42   }
43 }
44
Popular Tags