Uses of Class
org.codehaus.stax2.validation.XMLValidator
Packages that use XMLValidator
Package
Description
Package that contains a skeletal reference implementation of Stax2 API,
as well as some utility/helper classes that can be useful in building
one.
-
Uses of XMLValidator in org.codehaus.stax2.ri
Methods in org.codehaus.stax2.ri that return XMLValidatorModifier and TypeMethodDescriptionStax2ReaderAdapter.stopValidatingAgainst
(XMLValidationSchema schema) Stax2ReaderAdapter.stopValidatingAgainst
(XMLValidator validator) Stax2ReaderImpl.stopValidatingAgainst
(XMLValidationSchema schema) Stax2ReaderImpl.stopValidatingAgainst
(XMLValidator validator) Stax2WriterAdapter.stopValidatingAgainst
(XMLValidationSchema schema) Stax2WriterAdapter.stopValidatingAgainst
(XMLValidator validator) Stax2WriterImpl.stopValidatingAgainst
(XMLValidationSchema schema) Stax2WriterImpl.stopValidatingAgainst
(XMLValidator validator) Stax2ReaderAdapter.validateAgainst
(XMLValidationSchema schema) Stax2ReaderImpl.validateAgainst
(XMLValidationSchema schema) Stax2WriterAdapter.validateAgainst
(XMLValidationSchema schema) Stax2WriterImpl.validateAgainst
(XMLValidationSchema schema) Methods in org.codehaus.stax2.ri with parameters of type XMLValidatorModifier and TypeMethodDescriptionStax2ReaderAdapter.stopValidatingAgainst
(XMLValidator validator) Stax2ReaderImpl.stopValidatingAgainst
(XMLValidator validator) Stax2WriterAdapter.stopValidatingAgainst
(XMLValidator validator) Stax2WriterImpl.stopValidatingAgainst
(XMLValidator validator) -
Uses of XMLValidator in org.codehaus.stax2.ri.dom
Methods in org.codehaus.stax2.ri.dom that return XMLValidatorModifier and TypeMethodDescriptionDOMWrappingReader.stopValidatingAgainst
(XMLValidationSchema schema) DOMWrappingReader.stopValidatingAgainst
(XMLValidator validator) DOMWrappingWriter.stopValidatingAgainst
(XMLValidationSchema schema) DOMWrappingWriter.stopValidatingAgainst
(XMLValidator validator) DOMWrappingReader.validateAgainst
(XMLValidationSchema schema) DOMWrappingWriter.validateAgainst
(XMLValidationSchema schema) Methods in org.codehaus.stax2.ri.dom with parameters of type XMLValidatorModifier and TypeMethodDescriptionDOMWrappingReader.stopValidatingAgainst
(XMLValidator validator) DOMWrappingWriter.stopValidatingAgainst
(XMLValidator validator) -
Uses of XMLValidator in org.codehaus.stax2.util
Methods in org.codehaus.stax2.util that return XMLValidatorModifier and TypeMethodDescriptionStreamReader2Delegate.stopValidatingAgainst
(XMLValidationSchema schema) StreamReader2Delegate.stopValidatingAgainst
(XMLValidator validator) StreamWriter2Delegate.stopValidatingAgainst
(XMLValidationSchema schema) StreamWriter2Delegate.stopValidatingAgainst
(XMLValidator validator) StreamReader2Delegate.validateAgainst
(XMLValidationSchema schema) StreamWriter2Delegate.validateAgainst
(XMLValidationSchema schema) Methods in org.codehaus.stax2.util with parameters of type XMLValidatorModifier and TypeMethodDescriptionStreamReader2Delegate.stopValidatingAgainst
(XMLValidator validator) StreamWriter2Delegate.stopValidatingAgainst
(XMLValidator validator) -
Uses of XMLValidator in org.codehaus.stax2.validation
Subclasses of XMLValidator in org.codehaus.stax2.validationModifier and TypeClassDescriptionclass
Simple utility class that allows chaining ofXMLValidator
instances.Fields in org.codehaus.stax2.validation declared as XMLValidatorModifier and TypeFieldDescriptionprotected XMLValidator
ValidatorPair.mFirst
protected XMLValidator
XMLValidationProblem.mReporter
Validator instance that reported the problem, if any (may be null if stream reader or writer itself reported the problem)protected XMLValidator
ValidatorPair.mSecond
Methods in org.codehaus.stax2.validation that return XMLValidatorModifier and TypeMethodDescriptionXMLValidationSchema.createValidator
(ValidationContext ctxt) XMLValidationProblem.getReporter()
Returns the validator that reported the problem if known.Validatable.stopValidatingAgainst
(XMLValidationSchema schema) Method that can be called by application to stop validating output against a schema, for whichValidatable.validateAgainst(org.codehaus.stax2.validation.XMLValidationSchema)
was called earlier.Validatable.stopValidatingAgainst
(XMLValidator validator) Method that can be called by application to stop validating output using specified validator.Validatable.validateAgainst
(XMLValidationSchema schema) Method that will construct aXMLValidator
instance from the given schema (unless a validator for that schema has already been added), initialize it if necessary, and make validatable object (reader, writer) call appropriate validation methods from this point on until the end of the document (that is, it's not scoped with sub-trees), or until validator is removed by an explicit call toValidatable.stopValidatingAgainst(org.codehaus.stax2.validation.XMLValidationSchema)
.Methods in org.codehaus.stax2.validation with parameters of type XMLValidatorModifier and TypeMethodDescriptionprivate boolean
ValidatorPair.doRemoveValidator
(XMLValidationSchema schema, XMLValidator[] results) private boolean
ValidatorPair.doRemoveValidator
(XMLValidator vld, XMLValidator[] results) static boolean
ValidatorPair.removeValidator
(XMLValidator root, XMLValidationSchema schema, XMLValidator[] results) static boolean
ValidatorPair.removeValidator
(XMLValidator root, XMLValidator vld, XMLValidator[] results) void
XMLValidationProblem.setReporter
(XMLValidator v) Set the validator object that reported this problem, if known.Validatable.stopValidatingAgainst
(XMLValidator validator) Method that can be called by application to stop validating output using specified validator.Constructors in org.codehaus.stax2.validation with parameters of type XMLValidator