KickJava   Java API By Example, From Geeks To Geeks.

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


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  * <p>$Id: FormatTextCallout.java,v 1.1 2001/04/02 13:03:45 nwalsh 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.1 2001/04/02 13:03:45 nwalsh 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,
35                 Callout callout) {
36     formatTextCallout(rtf, callout);
37   }
38 }
39
Popular Tags