attributeDecl
public void attributeDecl(String elementName,
String attributeName,
String type,
String[] enumeration,
String defaultType,
org.apache.xerces.xni.XMLString defaultValue,
org.apache.xerces.xni.XMLString nonNormalizedDefaultValue,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
An attribute declaration.
- attributeDecl in interface org.apache.xerces.xni.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", 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.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
childrenElement
public void childrenElement(String elementName)
throws org.apache.xerces.xni.XNIException
A referenced element in a children content model.
elementName
- The name of the referenced element.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
childrenEndGroup
public void childrenEndGroup()
throws org.apache.xerces.xni.XNIException
The end of a children group.
Note: This method is only called after a call to
the startContentModel method where the type is TYPE_CHILDREN.
childrenOccurrence
public void childrenOccurrence(short occurrence)
throws org.apache.xerces.xni.XNIException
The occurrence count for a child in a children content model.
Note: This method is only called after a call to
the startContentModel method where the type is TYPE_CHILDREN.
occurrence
- The occurrence count for the last children element
or children group.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
XMLDTDContentModelHandler.OCCURS_ZERO_OR_ONE
, XMLDTDContentModelHandler.OCCURS_ZERO_OR_MORE
, XMLDTDContentModelHandler.OCCURS_ONE_OR_MORE
, XMLElementDecl.TYPE_CHILDREN
childrenSeparator
public void childrenSeparator(short separator)
throws org.apache.xerces.xni.XNIException
The separator between choices or sequences of a children content
model.
Note: This method is only called after a call to
the startContentModel method where the type is TYPE_CHILDREN.
separator
- The type of children separator.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
childrenStartGroup
public void childrenStartGroup()
throws org.apache.xerces.xni.XNIException
The start of a children group.
Note: This method is only called after a call to
the startContentModel method where the type is TYPE_CHILDREN.
Note: Children groups can be nested and have
associated occurrence counts.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
comment
public void comment(org.apache.xerces.xni.XMLString text,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
A comment.
- comment in interface org.apache.xerces.xni.XMLDTDHandler
text
- The text in the comment.
org.apache.xerces.xni.XNIException
- Thrown by application to signal an error.
elementDecl
public void elementDecl(String name,
String contentModel,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
An element declaration.
- elementDecl in interface org.apache.xerces.xni.XMLDTDHandler
name
- The name of the element.contentModel
- The element content model.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endAttlist
public void endAttlist(org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The end of an attribute list.
- endAttlist in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endConditional
public void endConditional(org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The end of a conditional section.
- endConditional in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endContentModel
public void endContentModel()
throws org.apache.xerces.xni.XNIException
The end of a content model.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endDTD
public void endDTD(org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The end of the DTD.
- endDTD in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endEntity
public void endEntity(String name,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
This method notifies the end of an entity. The DTD has the pseudo-name
of "[dtd]" and parameter entity names start with '%'.
Note: Since the DTD is an entity, the handler
will be notified of the end of the DTD entity by calling the
endEntity method with the entity name "[dtd]"
after calling
the endDTD method.
name
- The name of the entity.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
endExternalSubset
public void endExternalSubset(org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The end of the external subset.
- endExternalSubset in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
externalEntityDecl
public void externalEntityDecl(String name,
org.apache.xerces.xni.XMLResourceIdentifier identifier,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
An external entity declaration.
- externalEntityDecl in interface org.apache.xerces.xni.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 entity.augmentations
- Additional information that may include infoset
augmentations.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
getDTDGrammar
public DTDGrammar getDTDGrammar()
getDTDGrammar
- the grammar created by this parser
internalEntityDecl
public void internalEntityDecl(String name,
org.apache.xerces.xni.XMLString text,
org.apache.xerces.xni.XMLString nonNormalizedText,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
An internal entity declaration.
- internalEntityDecl in interface org.apache.xerces.xni.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.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
mixedElement
public void mixedElement(String elementName)
throws org.apache.xerces.xni.XNIException
A referenced element in a mixed content model. If the mixed content
model only allows text content, then this method will not be called
for that model. However, if this method is called for a mixed
content model, then the zero or more occurrence count is implied.
Note: This method is only called after a call to
the startContentModel method where the type is TYPE_MIXED.
elementName
- The name of the referenced element.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
notationDecl
public void notationDecl(String name,
org.apache.xerces.xni.XMLResourceIdentifier identifier,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
A notation declaration
- notationDecl in interface org.apache.xerces.xni.XMLDTDHandler
name
- The name of the notation.identifier
- An object containing all location information
pertinent to this notation.augmentations
- Additional information that may include infoset
augmentations.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
processingInstruction
public void processingInstruction(String target,
org.apache.xerces.xni.XMLString data,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
A processing instruction. Processing instructions consist of a
target name and, optionally, text data. The data is only meaningful
to the application.
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 org.apache.xerces.xni.XMLDTDHandler
target
- The target.data
- The data or null if none specified.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
startAttlist
public void startAttlist(String elementName,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The start of an attribute list.
- startAttlist in interface org.apache.xerces.xni.XMLDTDHandler
elementName
- The name of the element that this attribute
list is associated with.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
startConditional
public void startConditional(short type,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The start of a conditional section.
- startConditional in interface org.apache.xerces.xni.XMLDTDHandler
type
- The type of the conditional section. This value will
either be CONDITIONAL_INCLUDE or CONDITIONAL_IGNORE.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
XMLDTDHandler.CONDITIONAL_INCLUDE
, XMLDTDHandler.CONDITIONAL_IGNORE
startContentModel
public void startContentModel(String elementName,
short type)
throws org.apache.xerces.xni.XNIException
The start of a content model. Depending on the type of the content
model, specific methods may be called between the call to the
startContentModel method and the call to the endContentModel method.
elementName
- The name of the element.type
- The content model type.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
startDTD
public void startDTD(org.apache.xerces.xni.XMLLocator locator,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The start of the DTD.
- startDTD in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
startEntity
public void startEntity(String name,
String publicId,
String systemId,
String encoding)
throws org.apache.xerces.xni.XNIException
This method notifies of the start of an entity. The DTD has the
pseudo-name of "[dtd]" and parameter entity names start with '%'.
Note: Since the DTD is an entity, the handler
will be notified of the start of the DTD entity by calling the
startEntity method with the entity name "[dtd]"
before calling
the startDTD method.
name
- The name of the entity.publicId
- The public identifier of the entity if the entity
is external, null otherwise.systemId
- The system identifier of the entity if the entity
is external, null otherwise.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).
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
startExternalSubset
public void startExternalSubset(org.apache.xerces.xni.XMLResourceIdentifier identifier,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
The start of the external subset.
- startExternalSubset in interface org.apache.xerces.xni.XMLDTDHandler
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
textDecl
public void textDecl(String version,
String encoding)
throws org.apache.xerces.xni.XNIException
Notifies of the presence of a TextDecl line in an entity. If present,
this method will be called immediately following the startEntity call.
Note: This method is only called for external
parameter entities referenced in the DTD.
version
- The XML version, or null if not specified.encoding
- The IANA encoding name of the entity.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.
unparsedEntityDecl
public void unparsedEntityDecl(String name,
org.apache.xerces.xni.XMLResourceIdentifier identifier,
String notation,
org.apache.xerces.xni.Augmentations augmentations)
throws org.apache.xerces.xni.XNIException
An unparsed entity declaration.
- unparsedEntityDecl in interface org.apache.xerces.xni.XMLDTDHandler
name
- The name of the entity.identifier
- An object containing all location information
pertinent to this entity.notation
- The name of the notation.augmentations
- Additional information that may include infoset
augmentations.
org.apache.xerces.xni.XNIException
- Thrown by handler to signal an error.