Documentation for this section has not yet been entered.
Get method documentation [Android Documentation]
Gets the current Org.W3c.Dom.LS.ILSResourceResolver set to this Javax.Xml.Validation.Validator.
Set method documentation [Android Documentation]
Sets the Org.W3c.Dom.LS.ILSResourceResolver to customize
resource resolution while in a validation episode.
Javax.Xml.Validation.Validator uses a Org.W3c.Dom.LS.ILSResourceResolver
when it needs to locate external resources while a validation,
although exactly what constitutes "locating external resources" is
up to each schema language.
When the Org.W3c.Dom.LS.ILSResourceResolver is null, the implementation will
behave as if the following Org.W3c.Dom.LS.ILSResourceResolver is set:
java Example
class DumbLSResourceResolver implements LSResourceResolver {
public LSInput resolveResource(
String publicId, String systemId, String baseURI) {
return null; // always return null
}
}