Package com.sun.tools.jxc.gen.config
Interface NGCCEventReceiver
-
- All Known Implementing Classes:
Classes,Config,NGCCHandler,NGCCInterleaveFilter,Schema
public interface NGCCEventReceiverAuto-generated, do not edit.
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterAttribute(String uri, String localName, String qname)voidenterElement(String uri, String localName, String qname, Attributes atts)voidleaveAttribute(String uri, String localName, String qname)voidleaveElement(String uri, String localName, String qname)voidtext(String value)
-
-
-
Method Detail
-
enterElement
void enterElement(String uri, String localName, String qname, Attributes atts) throws SAXException
- Throws:
SAXException
-
leaveElement
void leaveElement(String uri, String localName, String qname) throws SAXException
- Throws:
SAXException
-
text
void text(String value) throws SAXException
- Throws:
SAXException
-
enterAttribute
void enterAttribute(String uri, String localName, String qname) throws SAXException
- Throws:
SAXException
-
leaveAttribute
void leaveAttribute(String uri, String localName, String qname) throws SAXException
- Throws:
SAXException
-
-