mirceatoma 2002/10/12 20:26:42
Added: xmlutil/src/java/org/apache/excalibur/xml/sax
XMLConsumer.java
Log:
Move from org.apache.avalon.excalibur.xml package.
Revision Changes Path
1.1
jakarta-avalon-excalibur/xmlutil/src/java/org/apache/excalibur/xml/sax/XMLConsumer.java
Index: XMLConsumer.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.excalibur.xml.sax;
import org.xml.sax.ContentHandler;
import org.xml.sax.ext.LexicalHandler;
/**
* This interfaces identifies classes that consume XML data, receiving
* notification of SAX events.
* <br>
* This interface unites the idea of SAX <code>ContentHandler</code> and
* <code>LexicalHandler</code>.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Pierpaolo Fumagalli</a>
* (Apache Software Foundation, Exoffice Technologies)
* @version CVS $Revision: 1.1 $ $Date: 2002/10/13 03:26:42 $
*/
public interface XMLConsumer
extends ContentHandler, LexicalHandler
{
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>