Package com.ctc.wstx.dtd
Class StructValidator
java.lang.Object
com.ctc.wstx.dtd.StructValidator
- Direct Known Subclasses:
ChoiceContentSpec.Validator
,DFAValidator
,EmptyValidator
,SeqContentSpec.Validator
,TokenContentSpec.Validator
Base class for validator Objects used to validate tree structure of an
XML-document against DTD.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract String
Method called when the end element of the scope this validator validates is encountered.abstract StructValidator
Method that should be called to get the actual usable validator instance, from the 'template' validator.abstract String
tryToValidate
(PrefixedName elemName) Method called when a new (start) element is encountered within the scope of parent element this validator monitors.
-
Constructor Details
-
StructValidator
public StructValidator()
-
-
Method Details
-
newInstance
Method that should be called to get the actual usable validator instance, from the 'template' validator. -
tryToValidate
Method called when a new (start) element is encountered within the scope of parent element this validator monitors.- Returns:
- Null if element is valid in its current position; error message if not.
-
fullyValid
Method called when the end element of the scope this validator validates is encountered. It should make sure that the content model is valid, and if not, to construct an error message.- Returns:
- Null if the content model for the element is valid; error message if not.
-