| Method from com.sun.org.apache.xerces.internal.jaxp.JAXPValidatorComponent$SAX2XNI Detail: |
public void characters(char[] ch,
int start,
int len) throws SAXException {
try {
handler().characters(new XMLString(ch,start,len),aug());
} catch( XNIException e ) {
throw toSAXException(e);
}
}
|
public void endElement(String uri,
String localName,
String qname) throws SAXException {
try {
handler().endElement(toQName(uri,localName,qname),aug());
} catch( XNIException e ) {
throw toSAXException(e);
}
}
|
public void ignorableWhitespace(char[] ch,
int start,
int len) throws SAXException {
try {
handler().ignorableWhitespace(new XMLString(ch,start,len),aug());
} catch( XNIException e ) {
throw toSAXException(e);
}
}
|
public void startElement(String uri,
String localName,
String qname,
Attributes atts) throws SAXException {
try {
updateAttributes(atts);
handler().startElement(toQName(uri,localName,qname), fCurrentAttributes, elementAug());
} catch( XNIException e ) {
throw toSAXException(e);
}
}
|