Source code: com/nwalsh/xalan/FormatTextCallout.java
1 package com.nwalsh.xalan;
2
3 import org.w3c.dom.*;
4 import org.apache.xml.utils.DOMBuilder;
5 import com.nwalsh.xalan.Callout;
6 import org.apache.xml.utils.AttList;
7
8 /**
9 * <p>Utility class for the Verbatim extension (ignore this).</p>
10 *
11 *
12 * <p>Copyright (C) 2000, 2001 Norman Walsh.</p>
13 *
14 * <p><b>Change Log:</b></p>
15 * <dl>
16 * <dt>1.0</dt>
17 * <dd><p>Initial release.</p></dd>
18 * </dl>
19 *
20 * @author Norman Walsh
21 * <a href="mailto:ndw@nwalsh.com">ndw@nwalsh.com</a>
22 *
23 * @see Verbatim
24 *
25 **/
26
27 public class FormatTextCallout extends FormatCallout {
28 public FormatTextCallout(boolean fo) {
29 stylesheetFO = fo;
30 }
31
32 public void formatCallout(DOMBuilder rtf,
33 Callout callout) {
34 formatTextCallout(rtf, callout);
35 }
36 }