|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xerces.impl.dtd.XMLDTDProcessor
public class XMLDTDProcessor
The DTD processor. The processor implements a DTD filter: receiving DTD events from the DTD scanner; validating the content and structure; building a grammar, if applicable; and notifying the DTDHandler of the information resulting from the process.
This component requires the following features and properties from the component manager that uses it:
Field Summary |
---|
Fields inherited from interface org.apache.xerces.xni.XMLDTDHandler |
---|
CONDITIONAL_IGNORE, CONDITIONAL_INCLUDE |
Fields inherited from interface org.apache.xerces.xni.XMLDTDContentModelHandler |
---|
OCCURS_ONE_OR_MORE, OCCURS_ZERO_OR_MORE, OCCURS_ZERO_OR_ONE, SEPARATOR_CHOICE, SEPARATOR_SEQUENCE |
Constructor Summary | |
---|---|
XMLDTDProcessor()
Default constructor. |
Method Summary | |
---|---|
void |
any(Augmentations augs)
A content model of ANY. |
void |
attributeDecl(java.lang.String elementName,
java.lang.String attributeName,
java.lang.String type,
java.lang.String[] enumeration,
java.lang.String defaultType,
XMLString defaultValue,
XMLString nonNormalizedDefaultValue,
Augmentations augs)
An attribute declaration. |
void |
comment(XMLString text,
Augmentations augs)
A comment. |
void |
element(java.lang.String elementName,
Augmentations augs)
A referenced element in a mixed or children content model. |
void |
elementDecl(java.lang.String name,
java.lang.String contentModel,
Augmentations augs)
An element declaration. |
void |
empty(Augmentations augs)
A content model of EMPTY. |
void |
endAttlist(Augmentations augs)
The end of an attribute list. |
void |
endConditional(Augmentations augs)
The end of a conditional section. |
void |
endContentModel(Augmentations augs)
The end of a content model. |
void |
endDTD(Augmentations augs)
The end of the DTD. |
void |
endExternalSubset(Augmentations augs)
The end of the DTD external subset. |
void |
endGroup(Augmentations augs)
The end of a group for mixed or children content models. |
void |
endParameterEntity(java.lang.String name,
Augmentations augs)
This method notifies the end of a parameter entity. |
void |
externalEntityDecl(java.lang.String name,
XMLResourceIdentifier identifier,
Augmentations augs)
An external entity declaration. |
XMLDTDContentModelHandler |
getDTDContentModelHandler()
Gets the DTD content model handler. |
XMLDTDContentModelSource |
getDTDContentModelSource()
|
XMLDTDHandler |
getDTDHandler()
Returns the DTD handler. |
XMLDTDSource |
getDTDSource()
|
java.lang.Boolean |
getFeatureDefault(java.lang.String featureId)
Returns the default state for a feature, or null if this component does not want to report a default value for this feature. |
java.lang.Object |
getPropertyDefault(java.lang.String propertyId)
Returns the default state for a property, or null if this component does not want to report a default value for this property. |
java.lang.String[] |
getRecognizedFeatures()
Returns a list of feature identifiers that are recognized by this component. |
java.lang.String[] |
getRecognizedProperties()
Returns a list of property identifiers that are recognized by this component. |
void |
ignoredCharacters(XMLString text,
Augmentations augs)
Characters within an IGNORE conditional section. |
void |
internalEntityDecl(java.lang.String name,
XMLString text,
XMLString nonNormalizedText,
Augmentations augs)
An internal entity declaration. |
void |
notationDecl(java.lang.String name,
XMLResourceIdentifier identifier,
Augmentations augs)
A notation declaration |
void |
occurrence(short occurrence,
Augmentations augs)
The occurrence count for a child in a children content model or for the mixed content model group. |
void |
pcdata(Augmentations augs)
The appearance of "#PCDATA" within a group signifying a mixed content model. |
void |
processingInstruction(java.lang.String target,
XMLString data,
Augmentations augs)
A processing instruction. |
void |
reset(XMLComponentManager componentManager)
Resets the component. |
void |
separator(short separator,
Augmentations augs)
The separator between choices or sequences of a mixed or children content model. |
void |
setDTDContentModelHandler(XMLDTDContentModelHandler dtdContentModelHandler)
Sets the DTD content model handler. |
void |
setDTDContentModelSource(XMLDTDContentModelSource source)
|
void |
setDTDHandler(XMLDTDHandler dtdHandler)
Sets the DTD handler. |
void |
setDTDSource(XMLDTDSource source)
|
void |
setFeature(java.lang.String featureId,
boolean state)
Sets the state of a feature. |
void |
setProperty(java.lang.String propertyId,
java.lang.Object value)
Sets the value of a property. |
void |
startAttlist(java.lang.String elementName,
Augmentations augs)
The start of an attribute list. |
void |
startConditional(short type,
Augmentations augs)
The start of a conditional section. |
void |
startContentModel(java.lang.String elementName,
Augmentations augs)
The start of a content model. |
void |
startDTD(XMLLocator locator,
Augmentations augs)
The start of the DTD. |
void |
startExternalSubset(XMLResourceIdentifier identifier,
Augmentations augs)
The start of the DTD external subset. |
void |
startGroup(Augmentations augs)
A start of either a mixed or children content model. |
void |
startParameterEntity(java.lang.String name,
XMLResourceIdentifier identifier,
java.lang.String encoding,
Augmentations augs)
This method notifies of the start of a parameter entity. |
void |
textDecl(java.lang.String version,
java.lang.String encoding,
Augmentations augs)
Notifies of the presence of a TextDecl line in an entity. |
void |
unparsedEntityDecl(java.lang.String name,
XMLResourceIdentifier identifier,
java.lang.String notation,
Augmentations augs)
An unparsed entity declaration. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public XMLDTDProcessor()
Method Detail |
---|
public void reset(XMLComponentManager componentManager) throws XMLConfigurationException
XMLComponent
reset
in interface XMLComponent
componentManager
- The component manager.
XMLConfigurationException
public java.lang.String[] getRecognizedFeatures()
getRecognizedFeatures
in interface XMLComponent
public void setFeature(java.lang.String featureId, boolean state) throws XMLConfigurationException
Note: Components should silently ignore features that do not affect the operation of the component.
setFeature
in interface XMLComponent
featureId
- The feature identifier.state
- The state of the feature.
SAXNotRecognizedException
- The component should not throw
this exception.
SAXNotSupportedException
- The component should not throw
this exception.
XMLConfigurationException
- Thrown for configuration error.
In general, components should
only throw this exception if
it is really
a critical error.public java.lang.String[] getRecognizedProperties()
getRecognizedProperties
in interface XMLComponent
public void setProperty(java.lang.String propertyId, java.lang.Object value) throws XMLConfigurationException
Note: Components should silently ignore properties that do not affect the operation of the component.
setProperty
in interface XMLComponent
propertyId
- The property identifier.value
- The value of the property.
SAXNotRecognizedException
- The component should not throw
this exception.
SAXNotSupportedException
- The component should not throw
this exception.
XMLConfigurationException
- Thrown for configuration error.
In general, components should
only throw this exception if
it is really
a critical error.public java.lang.Boolean getFeatureDefault(java.lang.String featureId)
getFeatureDefault
in interface XMLComponent
featureId
- The feature identifier.public java.lang.Object getPropertyDefault(java.lang.String propertyId)
getPropertyDefault
in interface XMLComponent
propertyId
- The property identifier.public void setDTDHandler(XMLDTDHandler dtdHandler)
setDTDHandler
in interface XMLDTDSource
dtdHandler
- The DTD handler.public XMLDTDHandler getDTDHandler()
getDTDHandler
in interface XMLDTDSource
public void setDTDContentModelHandler(XMLDTDContentModelHandler dtdContentModelHandler)
setDTDContentModelHandler
in interface XMLDTDContentModelSource
dtdContentModelHandler
- The DTD content model handler.public XMLDTDContentModelHandler getDTDContentModelHandler()
getDTDContentModelHandler
in interface XMLDTDContentModelSource
public void startExternalSubset(XMLResourceIdentifier identifier, Augmentations augs) throws XNIException
startExternalSubset
in interface XMLDTDHandler
augs
- Additional information that may include infoset
augmentations.identifier
- The resource identifier.
XNIException
- Thrown by handler to signal an error.public void endExternalSubset(Augmentations augs) throws XNIException
endExternalSubset
in interface XMLDTDHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void comment(XMLString text, Augmentations augs) throws XNIException
comment
in interface XMLDTDHandler
text
- The text in the comment.augs
- Additional information that may include infoset augmentations
XNIException
- Thrown by application to signal an error.public void processingInstruction(java.lang.String target, XMLString data, Augmentations augs) throws XNIException
Typically, a processing instruction's data will contain a series of pseudo-attributes. These pseudo-attributes follow the form of element attributes but are not parsed or presented to the application as anything other than text. The application is responsible for parsing the data.
processingInstruction
in interface XMLDTDHandler
target
- The target.data
- The data or null if none specified.augs
- Additional information that may include infoset augmentations
XNIException
- Thrown by handler to signal an error.public void startDTD(XMLLocator locator, Augmentations augs) throws XNIException
startDTD
in interface XMLDTDHandler
locator
- The document locator, or null if the document
location cannot be reported during the parsing of
the document DTD. However, it is strongly
recommended that a locator be supplied that can
at least report the base system identifier of the
DTD.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void ignoredCharacters(XMLString text, Augmentations augs) throws XNIException
ignoredCharacters
in interface XMLDTDHandler
text
- The ignored text.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void textDecl(java.lang.String version, java.lang.String encoding, Augmentations augs) throws XNIException
Note: This method is only called for external parameter entities referenced in the DTD.
textDecl
in interface XMLDTDHandler
version
- The XML version, or null if not specified.encoding
- The IANA encoding name of the entity.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void startParameterEntity(java.lang.String name, XMLResourceIdentifier identifier, java.lang.String encoding, Augmentations augs) throws XNIException
startParameterEntity
in interface XMLDTDHandler
name
- The name of the parameter entity.identifier
- The resource identifier.encoding
- The auto-detected IANA encoding name of the entity
stream. This value will be null in those situations
where the entity encoding is not auto-detected (e.g.
internal parameter entities).augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void endParameterEntity(java.lang.String name, Augmentations augs) throws XNIException
endParameterEntity
in interface XMLDTDHandler
name
- The name of the parameter entity.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void elementDecl(java.lang.String name, java.lang.String contentModel, Augmentations augs) throws XNIException
elementDecl
in interface XMLDTDHandler
name
- The name of the element.contentModel
- The element content model.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void startAttlist(java.lang.String elementName, Augmentations augs) throws XNIException
startAttlist
in interface XMLDTDHandler
elementName
- The name of the element that this attribute
list is associated with.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void attributeDecl(java.lang.String elementName, java.lang.String attributeName, java.lang.String type, java.lang.String[] enumeration, java.lang.String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augs) throws XNIException
attributeDecl
in interface XMLDTDHandler
elementName
- The name of the element that this attribute
is associated with.attributeName
- The name of the attribute.type
- The attribute type. This value will be one of
the following: "CDATA", "ENTITY", "ENTITIES",
"ENUMERATION", "ID", "IDREF", "IDREFS",
"NMTOKEN", "NMTOKENS", or "NOTATION".enumeration
- If the type has the value "ENUMERATION" or
"NOTATION", this array holds the allowed attribute
values; otherwise, this array is null.defaultType
- The attribute default type. This value will be
one of the following: "#FIXED", "#IMPLIED",
"#REQUIRED", or null.defaultValue
- The attribute default value, or null if no
default value is specified.nonNormalizedDefaultValue
- The attribute default value with no normalization
performed, or null if no default value is specified.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void endAttlist(Augmentations augs) throws XNIException
endAttlist
in interface XMLDTDHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void internalEntityDecl(java.lang.String name, XMLString text, XMLString nonNormalizedText, Augmentations augs) throws XNIException
internalEntityDecl
in interface XMLDTDHandler
name
- The name of the entity. Parameter entity names start with
'%', whereas the name of a general entity is just the
entity name.text
- The value of the entity.nonNormalizedText
- The non-normalized value of the entity. This
value contains the same sequence of characters that was in
the internal entity declaration, without any entity
references expanded.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void externalEntityDecl(java.lang.String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException
externalEntityDecl
in interface XMLDTDHandler
name
- The name of the entity. Parameter entity names start
with '%', whereas the name of a general entity is just
the entity name.identifier
- An object containing all location information
pertinent to this external entity.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void unparsedEntityDecl(java.lang.String name, XMLResourceIdentifier identifier, java.lang.String notation, Augmentations augs) throws XNIException
unparsedEntityDecl
in interface XMLDTDHandler
name
- The name of the entity.identifier
- An object containing all location information
pertinent to this entity.notation
- The name of the notation.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void notationDecl(java.lang.String name, XMLResourceIdentifier identifier, Augmentations augs) throws XNIException
notationDecl
in interface XMLDTDHandler
name
- The name of the notation.identifier
- An object containing all location information
pertinent to this notation.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void startConditional(short type, Augmentations augs) throws XNIException
startConditional
in interface XMLDTDHandler
type
- The type of the conditional section. This value will
either be CONDITIONAL_INCLUDE or CONDITIONAL_IGNORE.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.XMLDTDHandler.CONDITIONAL_INCLUDE
,
XMLDTDHandler.CONDITIONAL_IGNORE
public void endConditional(Augmentations augs) throws XNIException
endConditional
in interface XMLDTDHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void endDTD(Augmentations augs) throws XNIException
endDTD
in interface XMLDTDHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void setDTDSource(XMLDTDSource source)
setDTDSource
in interface XMLDTDHandler
public XMLDTDSource getDTDSource()
getDTDSource
in interface XMLDTDHandler
public void setDTDContentModelSource(XMLDTDContentModelSource source)
setDTDContentModelSource
in interface XMLDTDContentModelHandler
public XMLDTDContentModelSource getDTDContentModelSource()
getDTDContentModelSource
in interface XMLDTDContentModelHandler
public void startContentModel(java.lang.String elementName, Augmentations augs) throws XNIException
startContentModel
in interface XMLDTDContentModelHandler
elementName
- The name of the element.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void any(Augmentations augs) throws XNIException
any
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.empty(org.apache.xerces.xni.Augmentations)
,
startGroup(org.apache.xerces.xni.Augmentations)
public void empty(Augmentations augs) throws XNIException
empty
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.any(org.apache.xerces.xni.Augmentations)
,
startGroup(org.apache.xerces.xni.Augmentations)
public void startGroup(Augmentations augs) throws XNIException
pcdata()
method. A children content model will
contain additional groups and/or elements.
startGroup
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.any(org.apache.xerces.xni.Augmentations)
,
empty(org.apache.xerces.xni.Augmentations)
public void pcdata(Augmentations augs)
startGroup()
.
pcdata
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.startGroup(org.apache.xerces.xni.Augmentations)
public void element(java.lang.String elementName, Augmentations augs) throws XNIException
element
in interface XMLDTDContentModelHandler
elementName
- The name of the referenced element.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void separator(short separator, Augmentations augs) throws XNIException
separator
in interface XMLDTDContentModelHandler
separator
- The type of children separator.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.XMLDTDContentModelHandler.SEPARATOR_CHOICE
,
XMLDTDContentModelHandler.SEPARATOR_SEQUENCE
public void occurrence(short occurrence, Augmentations augs) throws XNIException
occurrence
in interface XMLDTDContentModelHandler
occurrence
- The occurrence count for the last element
or group.augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.XMLDTDContentModelHandler.OCCURS_ZERO_OR_ONE
,
XMLDTDContentModelHandler.OCCURS_ZERO_OR_MORE
,
XMLDTDContentModelHandler.OCCURS_ONE_OR_MORE
public void endGroup(Augmentations augs) throws XNIException
endGroup
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.public void endContentModel(Augmentations augs) throws XNIException
endContentModel
in interface XMLDTDContentModelHandler
augs
- Additional information that may include infoset
augmentations.
XNIException
- Thrown by handler to signal an error.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |