com.sun.xml.xsom.impl.parser.state.NGCCEventReceiver Maven / Gradle / Ivy
Go to download
Old JAXB Binding Compiler. Contains source code needed for binding customization files into java sources.
In other words: the *tool* to generate java classes for the given xml representation.
package com.sun.xml.xsom.impl.parser.state;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
/**
*
*
* @author Kohsuke Kawaguchi ([email protected])
*/
public interface NGCCEventReceiver {
void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;
void leaveElement(String uri, String localName, String qname) throws SAXException;
void text(String value) throws SAXException;
void enterAttribute(String uri, String localName, String qname) throws SAXException;
void leaveAttribute(String uri, String localName, String qname) throws SAXException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy