Example usage for Java javax.xml.validation Validator fields, constructors, methods, implement or subclass
The text is from its open source code.
Class> | getClass() Returns the runtime class of this Object . |
ErrorHandler | getErrorHandler() Gets the current ErrorHandler set to this Validator . |
LSResourceResolver | getResourceResolver() Gets the current LSResourceResolver set to this Validator . |
void | reset() Reset this Validator to its original configuration. |
void | setErrorHandler(ErrorHandler errorHandler) Sets the ErrorHandler to receive errors encountered during the validate method invocation. |
void | setFeature(String name, boolean value) Set the value of a feature flag. |
void | setProperty(String name, Object object) Set the value of a property. |
void | setResourceResolver(LSResourceResolver resourceResolver) Sets the LSResourceResolver to customize resource resolution while in a validation episode. |
void | validate(Source source) Validates the specified input. |
void | validate(Source source, Result result) Validates the specified input and send the augmented validation result to the specified output. |