Methods Summary |
---|
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 augmentations)An attribute declaration.
|
public void | comment(XMLString text, Augmentations augmentations)A comment.
|
public void | elementDecl(java.lang.String name, java.lang.String contentModel, Augmentations augmentations)An element declaration.
|
public void | endAttlist(Augmentations augmentations)The end of an attribute list.
|
public void | endConditional(Augmentations augmentations)The end of a conditional section.
|
public void | endDTD(Augmentations augmentations)The end of the DTD.
|
public void | endExternalSubset(Augmentations augmentations)The end of the DTD external subset.
|
public void | endParameterEntity(java.lang.String name, Augmentations augmentations)This method notifies the end of a parameter entity. Parameter entity
names begin with a '%' character.
|
public void | externalEntityDecl(java.lang.String name, XMLResourceIdentifier identifier, Augmentations augmentations)An external entity declaration.
|
public org.apache.xerces.xni.parser.XMLDTDSource | getDTDSource()
|
public void | ignoredCharacters(XMLString text, Augmentations augmentations)Characters within an IGNORE conditional section.
|
public void | internalEntityDecl(java.lang.String name, XMLString text, XMLString nonNormalizedText, Augmentations augmentations)An internal entity declaration.
|
public void | notationDecl(java.lang.String name, XMLResourceIdentifier identifier, Augmentations augmentations)A notation declaration
|
public void | processingInstruction(java.lang.String target, XMLString data, Augmentations augmentations)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.
|
public void | setDTDSource(org.apache.xerces.xni.parser.XMLDTDSource source)
|
public void | startAttlist(java.lang.String elementName, Augmentations augmentations)The start of an attribute list.
|
public void | startConditional(short type, Augmentations augmentations)The start of a conditional section.
|
public void | startDTD(XMLLocator locator, Augmentations augmentations)The start of the DTD.
|
public void | startExternalSubset(XMLResourceIdentifier identifier, Augmentations augmentations)The start of the DTD external subset.
|
public void | startParameterEntity(java.lang.String name, XMLResourceIdentifier identifier, java.lang.String encoding, Augmentations augmentations)This method notifies of the start of a parameter entity. The parameter
entity name start with a '%' character.
|
public void | textDecl(java.lang.String version, java.lang.String encoding, Augmentations augmentations)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.
|
public void | unparsedEntityDecl(java.lang.String name, XMLResourceIdentifier identifier, java.lang.String notation, Augmentations augmentations)An unparsed entity declaration.
|