01: package com.nwalsh.xalan;
02:
03: import org.w3c.dom.*;
04: import org.apache.xml.utils.DOMBuilder;
05: import com.nwalsh.xalan.Callout;
06: import org.apache.xml.utils.AttList;
07:
08: /**
09: * <p>Utility class for the Verbatim extension (ignore this).</p>
10: *
11: * <p>$Id: FormatTextCallout.java,v 1.4 2005-08-30 08:14:58 draganr Exp $</p>
12: *
13: * <p>Copyright (C) 2000, 2001 Norman Walsh.</p>
14: *
15: * <p><b>Change Log:</b></p>
16: * <dl>
17: * <dt>1.0</dt>
18: * <dd><p>Initial release.</p></dd>
19: * </dl>
20: *
21: * @author Norman Walsh
22: * <a href="mailto:ndw@nwalsh.com">ndw@nwalsh.com</a>
23: *
24: * @see Verbatim
25: *
26: * @version $Id: FormatTextCallout.java,v 1.4 2005-08-30 08:14:58 draganr Exp $
27: **/
28:
29: public class FormatTextCallout extends FormatCallout {
30: public FormatTextCallout(boolean fo) {
31: stylesheetFO = fo;
32: }
33:
34: public void formatCallout(DOMBuilder rtf, Callout callout) {
35: formatTextCallout(rtf, callout);
36: }
37: }
|