1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-27 04:55:04 +03:00
libxml2/SAXresult/xml1
1999-06-02 17:44:04 +00:00

17 lines
468 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(test, (null), (null))
SAX.getEntity(amp)
SAX.entityDecl(example, 1, (null), (null), <p>An ampersand (&#38;) may be escaped
numerically (&#38;#38;) or with a general entity
(&amp;).</p>)
SAX.getEntity(example)
SAX.startElement(test)
SAX.getEntity(example)
SAX.isStandalone()
SAX.hasInternalSubset()
SAX.hasExternalSubset()
SAX.error: Entity 'example' not defined
SAX.endElement(test)
SAX.endDocument()