Uses of Class
com.ctc.wstx.dtd.StructValidator
Packages that use StructValidator
Package
Description
Package that contains Woodstox classes that implement DTD handling.
-
Uses of StructValidator in com.ctc.wstx.dtd
Subclasses of StructValidator in com.ctc.wstx.dtdModifier and TypeClassDescription(package private) static final class
final class
Validator class that is based on a DFA constructed from DTD content specification.class
Simple content model validator that accepts no elements, ever; this is true for pure #PCDATA content model as well as EMPTY content model.(package private) static final class
Simple validator that can be used if all components of a sequence are leaf nodes, ie.(package private) static final class
Fields in com.ctc.wstx.dtd declared as StructValidatorModifier and TypeFieldDescription(package private) StructValidator
DTDElement.mValidator
Base validator object for validating content model of this element; may be null for some simple content models (ANY, EMPTY).protected StructValidator[]
DTDValidator.mValidators
Stack of validators for open elementsMethods in com.ctc.wstx.dtd that return StructValidatorModifier and TypeMethodDescriptionChoiceContentSpec.getSimpleValidator()
abstract StructValidator
ContentSpec.getSimpleValidator()
Method called by input element stack to get validator for this content specification, if this specification is simple enough not to need full DFA-based validator.SeqContentSpec.getSimpleValidator()
TokenContentSpec.getSimpleValidator()
DTDElement.getValidator()
ChoiceContentSpec.Validator.newInstance()
Rules for reuse are simple: if we can have any number of repetitions, we can just use a shared root instance.DFAValidator.newInstance()
EmptyValidator.newInstance()
Simple; can always (re)use instance itself; no state information is kept.SeqContentSpec.Validator.newInstance()
Sequence content specification is always stateful; can not use a shared instance...abstract StructValidator
StructValidator.newInstance()
Method that should be called to get the actual usable validator instance, from the 'template' validator.TokenContentSpec.Validator.newInstance()
Rules for reuse are simple: if we can have any number of repetitions, we can just use a shared root instance.private StructValidator
FullDTDReader.readMixedSpec
(PrefixedName elemName, boolean construct) Method called to parse what seems like a mixed content specification.Methods in com.ctc.wstx.dtd with parameters of type StructValidatorModifier and TypeMethodDescriptionstatic DTDElement
DTDElement.createDefined
(ReaderConfig cfg, Location loc, PrefixedName name, StructValidator val, int allowedContent) Method called to create an actual element definition, matching an ELEMENT directive in a DTD subset.DTDElement.define
(Location loc, StructValidator val, int allowedContent) Method called on placeholder element, to create a real instance that has all attribute definitions placeholder had (it'll always have at least one -- otherwise no placeholder was needed).Constructors in com.ctc.wstx.dtd with parameters of type StructValidatorModifierConstructorDescriptionprivate
DTDElement
(Location loc, PrefixedName name, StructValidator val, int allowedContent, boolean nsAware, boolean xml11)