blob: 50727c938f47e663881be6f443f0e57d25871674 [file] [log] [blame]
Daniel Veillard011b63c1999-06-02 17:44:04 +00001SAX.setDocumentLocator()
2SAX.startDocument()
3SAX.internalSubset(EXAMPLE, (null), example.dtd)
Daniel Veillard97fea181999-06-26 23:07:37 +00004SAX.resolveEntity( , example.dtd)
Daniel Veillard011b63c1999-06-02 17:44:04 +00005SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
6SAX.getEntity(xml)
7SAX.startElement(EXAMPLE)
8SAX.characters(
9 &xml;
10</EXAMPLE>
11, 5)
12SAX.getEntity(xml)
13SAX.isStandalone()
14SAX.hasInternalSubset()
15SAX.hasExternalSubset()
16SAX.error: Entity 'xml' not defined
17SAX.characters(
18</EXAMPLE>
19, 1)
20SAX.endElement(EXAMPLE)
21SAX.endDocument()