| com.sun.xml.xsom.impl.parser.state.NGCCEventSource
All known Subclasses: com.sun.xml.xsom.impl.parser.state.NGCCRuntime, com.sun.xml.xsom.impl.parser.state.NGCCInterleaveFilter,
NGCCEventSource | public interface NGCCEventSource (Code) | | author: Kohsuke Kawaguchi (kk@kohsuke.org) |
Method Summary | |
int | replace(NGCCEventReceiver _old, NGCCEventReceiver _new) Replaces an old handler with a new handler, and returns
ID of the EventReceiver thread. | void | sendEnterAttribute(int receiverThreadId, String uri, String local, String qname) | void | sendEnterElement(int receiverThreadId, String uri, String local, String qname, Attributes atts) Sends an enter element event to the specified EventReceiver thread. | void | sendLeaveAttribute(int receiverThreadId, String uri, String local, String qname) | void | sendLeaveElement(int receiverThreadId, String uri, String local, String qname) | void | sendText(int receiverThreadId, String value) |
|
|