Uses of Class
org.codehaus.stax2.validation.XMLValidator
-
Packages that use XMLValidator Package Description org.codehaus.stax2.ri Package that contains a skeletal reference implementation of Stax2 API, as well as some utility/helper classes that can be useful in building one.org.codehaus.stax2.ri.dom org.codehaus.stax2.util org.codehaus.stax2.validation -
-
Uses of XMLValidator in org.codehaus.stax2.ri
Methods in org.codehaus.stax2.ri with parameters of type XMLValidator Modifier and Type Method Description XMLValidator
Stax2ReaderAdapter. stopValidatingAgainst(XMLValidator validator)
XMLValidator
Stax2ReaderImpl. stopValidatingAgainst(XMLValidator validator)
XMLValidator
Stax2WriterAdapter. stopValidatingAgainst(XMLValidator validator)
XMLValidator
Stax2WriterImpl. stopValidatingAgainst(XMLValidator validator)
-
Uses of XMLValidator in org.codehaus.stax2.ri.dom
Methods in org.codehaus.stax2.ri.dom that return XMLValidator Modifier and Type Method Description XMLValidator
DOMWrappingReader. stopValidatingAgainst(XMLValidationSchema schema)
XMLValidator
DOMWrappingReader. stopValidatingAgainst(XMLValidator validator)
XMLValidator
DOMWrappingWriter. stopValidatingAgainst(XMLValidationSchema schema)
XMLValidator
DOMWrappingWriter. stopValidatingAgainst(XMLValidator validator)
XMLValidator
DOMWrappingReader. validateAgainst(XMLValidationSchema schema)
XMLValidator
DOMWrappingWriter. validateAgainst(XMLValidationSchema schema)
Methods in org.codehaus.stax2.ri.dom with parameters of type XMLValidator Modifier and Type Method Description XMLValidator
DOMWrappingReader. stopValidatingAgainst(XMLValidator validator)
XMLValidator
DOMWrappingWriter. stopValidatingAgainst(XMLValidator validator)
-
Uses of XMLValidator in org.codehaus.stax2.util
Methods in org.codehaus.stax2.util that return XMLValidator Modifier and Type Method Description XMLValidator
StreamReader2Delegate. stopValidatingAgainst(XMLValidationSchema schema)
XMLValidator
StreamReader2Delegate. stopValidatingAgainst(XMLValidator validator)
XMLValidator
StreamWriter2Delegate. stopValidatingAgainst(XMLValidationSchema schema)
XMLValidator
StreamWriter2Delegate. stopValidatingAgainst(XMLValidator validator)
XMLValidator
StreamReader2Delegate. validateAgainst(XMLValidationSchema schema)
XMLValidator
StreamWriter2Delegate. validateAgainst(XMLValidationSchema schema)
Methods in org.codehaus.stax2.util with parameters of type XMLValidator Modifier and Type Method Description XMLValidator
StreamReader2Delegate. stopValidatingAgainst(XMLValidator validator)
XMLValidator
StreamWriter2Delegate. stopValidatingAgainst(XMLValidator validator)
-
Uses of XMLValidator in org.codehaus.stax2.validation
Subclasses of XMLValidator in org.codehaus.stax2.validation Modifier and Type Class Description class
ValidatorPair
Simple utility class that allows chaining ofXMLValidator
instances.Fields in org.codehaus.stax2.validation declared as XMLValidator Modifier and Type Field Description protected 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 XMLValidator Modifier and Type Method Description XMLValidator
XMLValidationSchema. createValidator(ValidationContext ctxt)
XMLValidator
XMLValidationProblem. getReporter()
Returns the validator that reported the problem if known.XMLValidator
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.XMLValidator
Validatable. stopValidatingAgainst(XMLValidator validator)
Method that can be called by application to stop validating output using specified validator.XMLValidator
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 XMLValidator Modifier and Type Method Description private 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.XMLValidator
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 Constructor Description ValidatorPair(XMLValidator first, XMLValidator second)
-