Uses of Class
com.ctc.wstx.dtd.ModelNode
-
Packages that use ModelNode Package Description com.ctc.wstx.dtd Package that contains Woodstox classes that implement DTD handling. -
-
Uses of ModelNode in com.ctc.wstx.dtd
Subclasses of ModelNode in com.ctc.wstx.dtd Modifier and Type Class Description class
ChoiceModel
Model class that encapsulates set of sub-models, of which one (and only one) needs to be matched.class
ConcatModel
Model class that represents sequence of 2 sub-models, needed to be matched in the order.class
OptionalModel
Content specification class that represents an optional specification.class
StarModel
Model class that represents any number of repetitions of its submodel (including no repetitions).class
TokenModel
Model class that encapsulates a single (obligatory) token instance.Methods in com.ctc.wstx.dtd that return ModelNode Modifier and Type Method Description ModelNode
ChoiceModel. cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ModelNode
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.ModelNode
OptionalModel. cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ModelNode
StarModel. cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ModelNode
TokenModel. cloneModel()
Method that has to create a deep copy of the model, without sharing any of existing Objects.ModelNode
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.ModelNode
SeqContentSpec. rewrite()
ModelNode
TokenContentSpec. rewrite()
Constructors in com.ctc.wstx.dtd with parameters of type ModelNode Constructor Description ChoiceModel(ModelNode[] subModels)
ConcatModel(ModelNode left, ModelNode right)
OptionalModel(ModelNode model)
StarModel(ModelNode model)
-