| com.mvnforum.jaxb.db.impl.runtime.SAXUnmarshallerHandler
All known Subclasses: com.mvnforum.jaxb.db.impl.runtime.SAXUnmarshallerHandlerImpl, com.mvnforum.jaxb.db.impl.runtime.ValidatingUnmarshaller, com.mvnforum.jaxb.db.impl.runtime.InterningUnmarshallerHandler,
SAXUnmarshallerHandler | public interface SAXUnmarshallerHandler extends UnmarshallerHandler(Code) | | Unified event handler that processes
both the SAX events and error events.
This interface refines
ContentHandler as follows:
- element names and attribute names must be
String.intern ed.
- namespace prefix and uris must be
String.intern ed.
|
Method Summary | |
void | handleEvent(ValidationEvent event, boolean canRecover) Reports an error to the user, and asks if s/he wants
to recover. |
handleEvent | void handleEvent(ValidationEvent event, boolean canRecover) throws SAXException(Code) | | Reports an error to the user, and asks if s/he wants
to recover. If the canRecover flag is false, regardless
of the client instruction, an exception will be thrown.
Only if the flag is true and the user wants to recover from an error,
the method returns normally.
The thrown exception will be catched by the unmarshaller.
|
|
|