KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > state > xml > TransformChain


1 package org.sapia.soto.state.xml;
2
3 import java.util.List JavaDoc;
4
5 import javax.xml.transform.sax.TransformerHandler JavaDoc;
6
7 /**
8  * Instances of this interface are meant to hold a <code>TransformerHandler</code>
9  * list; the handler will be chained in an XML pipeline.
10  *
11  * @author Yanick Duchesne
12  *
13  * <dl>
14  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
15  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
16  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
17  * </dl>
18  */

19 public interface TransformChain {
20     
21     /**
22      * @param handler a <code>TransformerHandler</code>.
23      */

24     public void add(TransformerHandler JavaDoc handler);
25     
26     /**
27      * @return the <code>List</code> of <code>TransformerHandler</code>s
28      * that this instance holds.
29      */

30     public List JavaDoc getTransformerHandlers();
31 }
32
Popular Tags