KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > util > xml > confix > XMLConsumer


1 package org.sapia.util.xml.confix;
2
3 import org.xml.sax.InputSource JavaDoc;
4
5 /**
6  * Specifies the behavior of consumers of XML data.
7  *
8  * @author Yanick Duchesne
9  *
10  * <dl>
11  * <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>
12  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
13  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
14  * </dl>
15  */

16 public interface XMLConsumer {
17     
18     /**
19      * @param an <code>InputSource</code> of XML data.
20      */

21     public void consume(InputSource JavaDoc is) throws Exception JavaDoc;
22
23 }
24
Popular Tags