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; 11 import org.xml.sax.ext.LexicalHandler; 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, LexicalHandler { 25 } 26