Package relaxngcc.parser.state
Class NGCCHandler
java.lang.Object
relaxngcc.parser.state.NGCCHandler
- All Implemented Interfaces:
NGCCEventReceiver
- Direct Known Subclasses:
IncludedGrammarState,Start
- Version:
- $Id: NGCCHandler.java,v 1.9 2002/09/29 02:55:48 okajima Exp $
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
Method Summary
Modifier and TypeMethodDescriptionvoidrevertToParentFromEnterAttribute(Object result, int cookie, String uri, String local, String qname) voidrevertToParentFromEnterElement(Object result, int cookie, String uri, String local, String qname, Attributes atts) voidrevertToParentFromLeaveAttribute(Object result, int cookie, String uri, String local, String qname) voidrevertToParentFromLeaveElement(Object result, int cookie, String uri, String local, String qname) voidrevertToParentFromText(Object result, int cookie, String text) voidspawnChildFromEnterAttribute(NGCCEventReceiver child, String uri, String localname, String qname) voidspawnChildFromEnterElement(NGCCEventReceiver child, String uri, String localname, String qname, Attributes atts) voidspawnChildFromLeaveAttribute(NGCCEventReceiver child, String uri, String localname, String qname) voidspawnChildFromLeaveElement(NGCCEventReceiver child, String uri, String localname, String qname) voidspawnChildFromText(NGCCEventReceiver child, String value) voidunexpectedEnterAttribute(String qname) voidunexpectedEnterElement(String qname) voidunexpectedLeaveAttribute(String qname) voidunexpectedLeaveElement(String qname) Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface relaxngcc.parser.state.NGCCEventReceiver
enterAttribute, enterElement, leaveAttribute, leaveElement, text
-
Method Details
-
spawnChildFromEnterElement
public void spawnChildFromEnterElement(NGCCEventReceiver child, String uri, String localname, String qname, Attributes atts) throws SAXException - Throws:
SAXException
-
spawnChildFromEnterAttribute
public void spawnChildFromEnterAttribute(NGCCEventReceiver child, String uri, String localname, String qname) throws SAXException - Throws:
SAXException
-
spawnChildFromLeaveElement
public void spawnChildFromLeaveElement(NGCCEventReceiver child, String uri, String localname, String qname) throws SAXException - Throws:
SAXException
-
spawnChildFromLeaveAttribute
public void spawnChildFromLeaveAttribute(NGCCEventReceiver child, String uri, String localname, String qname) throws SAXException - Throws:
SAXException
-
spawnChildFromText
- Throws:
SAXException
-
revertToParentFromEnterElement
public void revertToParentFromEnterElement(Object result, int cookie, String uri, String local, String qname, Attributes atts) throws SAXException - Throws:
SAXException
-
revertToParentFromLeaveElement
public void revertToParentFromLeaveElement(Object result, int cookie, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
revertToParentFromEnterAttribute
public void revertToParentFromEnterAttribute(Object result, int cookie, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
revertToParentFromLeaveAttribute
public void revertToParentFromLeaveAttribute(Object result, int cookie, String uri, String local, String qname) throws SAXException - Throws:
SAXException
-
revertToParentFromText
- Throws:
SAXException
-
unexpectedEnterElement
- Throws:
SAXException
-
unexpectedLeaveElement
- Throws:
SAXException
-
unexpectedEnterAttribute
- Throws:
SAXException
-
unexpectedLeaveAttribute
- Throws:
SAXException
-