Uses of Class
com.ctc.wstx.dtd.ModelNode
Packages that use ModelNode
Package
Description
Package that contains Woodstox classes that implement DTD handling.
-
Uses of ModelNode in com.ctc.wstx.dtd
Subclasses of ModelNode in com.ctc.wstx.dtdModifier and TypeClassDescriptionclass
Model class that encapsulates set of sub-models, of which one (and only one) needs to be matched.class
Model class that represents sequence of 2 sub-models, needed to be matched in the order.class
Content specification class that represents an optional specification.class
Model class that represents any number of repetitions of its submodel (including no repetitions).final class
Model class that encapsulates a single (obligatory) token instance.Fields in com.ctc.wstx.dtd declared as ModelNodeModifier and TypeFieldDescription(package private) ModelNode
ConcatModel.mLeftModel
(package private) ModelNode
OptionalModel.mModel
(package private) ModelNode
StarModel.mModel
(package private) ModelNode
ConcatModel.mRightModel
(package private) final ModelNode[]
ChoiceModel.mSubModels
Methods in com.ctc.wstx.dtd that return ModelNodeModifier and TypeMethodDescriptionChoiceModel.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ConcatModel.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.abstract ModelNode
ModelNode.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.OptionalModel.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.StarModel.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.TokenModel.cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ChoiceContentSpec.rewrite()
abstract ModelNode
ContentSpec.rewrite()
Method called as the first part of DFA construction, if necessary; will usually create simplerModelNode
instances that will match definition this instance contains.SeqContentSpec.rewrite()
private ModelNode
SeqContentSpec.rewrite
(ContentSpec[] specs, int first, int last) TokenContentSpec.rewrite()
Constructors in com.ctc.wstx.dtd with parameters of type ModelNodeModifierConstructorDescriptionprotected
ChoiceModel
(ModelNode[] subModels) ConcatModel
(ModelNode left, ModelNode right) OptionalModel
(ModelNode model)