Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/nwalsh/saxon/FormatTextCallout.java


1   package com.nwalsh.saxon;
2   
3   import org.xml.sax.SAXException;
4   import org.w3c.dom.*;
5   
6   import javax.xml.transform.TransformerException;
7   
8   import com.icl.saxon.om.NamePool;
9   import com.icl.saxon.output.Emitter;
10  
11  import com.nwalsh.saxon.Callout;
12  
13  /**
14   * <p>Utility class for the Verbatim extension (ignore this).</p>
15   *
16   *
17   * <p>Copyright (C) 2000, 2001 Norman Walsh.</p>
18   *
19   * <p><b>Change Log:</b></p>
20   * <dl>
21   * <dt>1.0</dt>
22   * <dd><p>Initial release.</p></dd>
23   * </dl>
24   *
25   * @author Norman Walsh
26   * <a href="mailto:ndw@nwalsh.com">ndw@nwalsh.com</a>
27   *
28   * @see Verbatim
29   *
30   **/
31  
32  public class FormatTextCallout extends FormatCallout {
33    public FormatTextCallout(NamePool nPool, boolean fo) {
34      super(nPool, fo);
35    }
36  
37    public void formatCallout(Emitter rtfEmitter,
38            Callout callout) {
39      formatTextCallout(rtfEmitter, callout);
40    }
41  }