public class ValidatorImpl extends Validator
| Constructor and Description |
|---|
ValidatorImpl(PipelineConfiguration pipe,
PreparedSchema schema)
Create the Validator
|
| Modifier and Type | Method and Description |
|---|---|
Configuration |
getConfiguration()
Get the underlying Saxon Configuration object
|
ErrorHandler |
getErrorHandler()
Gets the current
ErrorHandler set to this Validator. |
Object |
getProperty(String name)
Look up the value of a property.
|
LSResourceResolver |
getResourceResolver()
Gets the current
LSResourceResolver |
void |
reset() |
void |
setErrorHandler(ErrorHandler errorHandler)
Sets the
ErrorHandler to receive errors encountered
during the validate method invocation. |
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,
Result result) |
getFeature, setFeature, validatepublic ValidatorImpl(PipelineConfiguration pipe, PreparedSchema schema)
pipe - the pipeline configurationschema - the schema against which validation takes placepublic void validate(Source source, Result result) throws SAXException, IOException
validate in class ValidatorSAXExceptionIOExceptionpublic void setErrorHandler(ErrorHandler errorHandler)
ErrorHandler to receive errors encountered
during the validate method invocation.
Error handler can be used to customize the error handling process
during a validation. When an ErrorHandler is set,
errors found during the validation will be first sent
to the ErrorHandler.
The error handler can abort further validation immediately
by throwing SAXException from the handler. Or for example
it can print an error to the screen and try to continue the
validation by returning normally from the ErrorHandler
If any Throwable is thrown from an ErrorHandler,
the caller of the validate method will be thrown
the same Throwable object.
Validator is not allowed to
throw SAXException without first reporting it to
ErrorHandler.
When the ErrorHandler is null, the implementation will
behave as if the following ErrorHandler is set:
class DraconianErrorHandler implementsErrorHandler{ public void fatalError(SAXParseExceptione ) throwsSAXException{ throw e; } public void error(SAXParseExceptione ) throwsSAXException{ throw e; } public void warning(SAXParseExceptione ) throwsSAXException{ // noop } }
When a new Validator object is created, initially
this field is set to null.
setErrorHandler in class ValidatorerrorHandler - A new error handler to be set. This parameter can be null.public ErrorHandler getErrorHandler()
ErrorHandler set to this Validator.getErrorHandler in class ValidatorsetErrorHandler(ErrorHandler) method, or null
if that method has never been called since this Validator
has created.setErrorHandler(ErrorHandler)public void setResourceResolver(LSResourceResolver resourceResolver)
LSResourceResolver to customize
resource resolution while in a validation episode.setResourceResolver in class ValidatorresourceResolver - A new resource resolver to be set. This parameter can be null.public LSResourceResolver getResourceResolver()
LSResourceResolvergetResourceResolver in class ValidatorsetResourceResolver(org.w3c.dom.ls.LSResourceResolver) method, or null
if that method has never been calledpublic Configuration getConfiguration()
public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException
The property name is any fully-qualified URI. It is
possible for a Validator to recognize a property name but
temporarily be unable to return its value.
Some property values may be available only in specific
contexts, such as before, during, or after a validation.
Validators are not required to recognize any specific
property names.
In the Saxon implementation, the property names that are recognized are the same as the
attribute names recognised by a TransformerFactory. These are listed as constant fields
in the class FeatureKeys
getProperty in class Validatorname - The property name, which is a non-null fully-qualified URI.SAXNotRecognizedException - If the property
value can't be assigned or retrieved.SAXNotSupportedException - When the
XMLReader recognizes the property name but
cannot determine its value at this time.NullPointerException - When the name parameter is null.setProperty(String, Object)public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSupportedException
The property name is any fully-qualified URI. It is
possible for a Validator to recognize a property name but
to be unable to change the current value.
Some property values may be immutable or mutable only
in specific contexts, such as before, during, or after
a validation.
In the Saxon implementation, the property names that are recognized are the same as the
attribute names recognised by a TransformerFactory. These are listed as constant fields
in the class FeatureKeys
setProperty in class Validatorname - The property name, which is a non-null fully-qualified URI.object - The requested value for the property.SAXNotRecognizedException - If the property
value can't be assigned or retrieved.SAXNotSupportedException - When the
Validator recognizes the property name but
cannot set the requested value.NullPointerException - When the name parameter is null.Copyright (c) 2004-2014 Saxonica Limited. All rights reserved.