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,v 1.1 2001/07/16 21:23:57 nwalsh Exp $

* *

Copyright (C) 2000, 2001 Norman Walsh.

* *

Change Log:

*
*
1.0
*

Initial release.

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