01: package com.sun.xml.xsom.impl.parser.state;
02:
03: import org.xml.sax.Attributes;
04: import org.xml.sax.SAXException;
05:
06: /**
07: *
08: *
09: * @author Kohsuke Kawaguchi (kk@kohsuke.org)
10: */
11: public interface NGCCEventReceiver {
12: void enterElement(String uri, String localName, String qname,
13: Attributes atts) throws SAXException;
14:
15: void leaveElement(String uri, String localName, String qname)
16: throws SAXException;
17:
18: void text(String value) throws SAXException;
19:
20: void enterAttribute(String uri, String localName, String qname)
21: throws SAXException;
22:
23: void leaveAttribute(String uri, String localName, String qname)
24: throws SAXException;
25: }
|