Package | Description |
---|---|
com.ctc.wstx.dtd |
Package that contains Woodstox classes that implement DTD handling.
|
com.ctc.wstx.util |
Contains utility classes that are not directly Woodstox specific, but are
for now only used by Woodstox.
|
Modifier and Type | Field and Description |
---|---|
(package private) WordResolver |
DTDEnumAttr.mEnumValues |
(package private) WordResolver |
DTDNotationAttr.mEnumValues |
Modifier and Type | Method and Description |
---|---|
private WordResolver |
FullDTDReader.parseEnumerated(DTDElement elem,
PrefixedName attrName,
boolean isNotation)
Parsing method that reads a list of one or more space-separated
tokens (nmtoken or name, depending on 'isNotation' argument)
|
Modifier and Type | Method and Description |
---|---|
DTDAttribute |
DTDElement.addAttribute(InputProblemReporter rep,
PrefixedName attrName,
int valueType,
DefaultAttrValue defValue,
WordResolver enumValues,
boolean fullyValidate)
Method called by DTD parser when it has read information about
an attribute that belong to this element
|
protected void |
FullDTDReader.checkXmlSpaceAttr(int type,
WordResolver enumValues) |
java.lang.String |
DTDAttribute.validateEnumValue(char[] cbuf,
int start,
int end,
boolean normalize,
WordResolver res)
Method called by validation/normalization code for enumeration-valued
attributes, to trim
specified attribute value (full normalization not needed -- called
for values that CAN NOT have spaces inside; such values can not
be legal), and then check whether it is included
in set of words (tokens) passed in.
|
Constructor and Description |
---|
DTDEnumAttr(PrefixedName name,
DefaultAttrValue defValue,
int specIndex,
boolean nsAware,
boolean xml11,
WordResolver enumValues) |
DTDNotationAttr(PrefixedName name,
DefaultAttrValue defValue,
int specIndex,
boolean nsAware,
boolean xml11,
WordResolver enumValues) |
Modifier and Type | Method and Description |
---|---|
WordResolver |
WordResolver.Builder.construct() |
static WordResolver |
WordResolver.constructInstance(java.util.TreeSet<java.lang.String> wordSet)
Tries to construct an instance given ordered set of words.
|