mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-17 18:19:32 +08:00
22 lines
478 B
Plaintext
22 lines
478 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(EXAMPLE, (null), example.dtd)
|
|
SAX.resolveEntity( , example.dtd)
|
|
SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
|
|
SAX.getEntity(xml)
|
|
SAX.startElement(EXAMPLE)
|
|
SAX.characters(
|
|
&xml;
|
|
</EXAMPLE>
|
|
, 5)
|
|
SAX.getEntity(xml)
|
|
SAX.isStandalone()
|
|
SAX.hasInternalSubset()
|
|
SAX.hasExternalSubset()
|
|
SAX.error: Entity 'xml' not defined
|
|
SAX.characters(
|
|
</EXAMPLE>
|
|
, 1)
|
|
SAX.endElement(EXAMPLE)
|
|
SAX.endDocument()
|