Package com.sun.tools.jxc.gen.config
Interface NGCCEventSource
-
- All Known Implementing Classes:
NGCCInterleaveFilter,NGCCRuntime,NGCCRuntimeEx
public interface NGCCEventSourceAuto-generated, do not edit.
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intreplace(NGCCEventReceiver _old, NGCCEventReceiver _new)Replaces an old handler with a new handler, and returns ID of the EventReceiver thread.voidsendEnterAttribute(int receiverThreadId, String uri, String local, String qname)voidsendEnterElement(int receiverThreadId, String uri, String local, String qname, Attributes atts)Sends an enter element event to the specified EventReceiver thread.voidsendLeaveAttribute(int receiverThreadId, String uri, String local, String qname)voidsendLeaveElement(int receiverThreadId, String uri, String local, String qname)voidsendText(int receiverThreadId, String value)
-
-
-
Method Detail
-
replace
int replace(NGCCEventReceiver _old, NGCCEventReceiver _new)
Replaces an old handler with a new handler, and returns ID of the EventReceiver thread.
-
sendEnterElement
void sendEnterElement(int receiverThreadId, String uri, String local, String qname, Attributes atts) throws SAXExceptionSends an enter element event to the specified EventReceiver thread.- Throws:
SAXException
-
sendLeaveElement
void sendLeaveElement(int receiverThreadId, String uri, String local, String qname) throws SAXException- Throws:
SAXException
-
sendEnterAttribute
void sendEnterAttribute(int receiverThreadId, String uri, String local, String qname) throws SAXException- Throws:
SAXException
-
sendLeaveAttribute
void sendLeaveAttribute(int receiverThreadId, String uri, String local, String qname) throws SAXException- Throws:
SAXException
-
sendText
void sendText(int receiverThreadId, String value) throws SAXException- Throws:
SAXException
-
-