01: package uk.org.xml.sax;
02:
03: import java.io.Writer;
04: import org.xml.sax.SAXException;
05: import org.xml.sax.AttributeList;
06:
07: public interface DocumentHandler extends org.xml.sax.DocumentHandler {
08: Writer startDocument(final Writer writer) throws SAXException;
09:
10: Writer startElement(final String name,
11: final AttributeList attributes, final Writer writer)
12: throws SAXException;
13: }
|