package com.nwalsh.saxon; import org.xml.sax.SAXException; import org.w3c.dom.*; import javax.xml.transform.TransformerException; import com.icl.saxon.om.NamePool; import com.icl.saxon.output.Emitter; import com.nwalsh.saxon.Callout; /** *

Utility class for the Verbatim extension (ignore this).

* *

$Id: FormatTextCallout.java 489 2001-07-16 21:23:57Z nwalsh $

* *

Copyright (C) 2000, 2001 Norman Walsh.

* *

Change Log:

*
*
1.0
*

Initial release.

*
* * @author Norman Walsh * ndw@nwalsh.com * * @see Verbatim * * @version $Id: FormatTextCallout.java 489 2001-07-16 21:23:57Z nwalsh $ **/ public class FormatTextCallout extends FormatCallout { public FormatTextCallout(NamePool nPool, boolean fo) { super(nPool, fo); } public void formatCallout(Emitter rtfEmitter, Callout callout) { formatTextCallout(rtfEmitter, callout); } }