KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > xml > XMLConsumer


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.xml;
9
10 import org.xml.sax.ContentHandler JavaDoc;
11 import org.xml.sax.ext.LexicalHandler JavaDoc;
12
13 /**
14  * This interfaces identifies classes that consume XML data, receiving
15  * notification of SAX events.
16  * <br>
17  * This interface unites the idea of SAX <code>ContentHandler</code> and
18  * <code>LexicalHandler</code>.
19  *
20  * @author <a HREF="mailto:fumagalli@exoffice.com">Pierpaolo Fumagalli</a>
21  * (Apache Software Foundation, Exoffice Technologies)
22  * @version CVS $Revision: 1.3 $ $Date: 2001/12/11 09:53:38 $
23  */

24 public interface XMLConsumer extends ContentHandler JavaDoc, LexicalHandler JavaDoc {
25 }
26
Popular Tags