blob: db36246080bfc6889539066092f5e7c268027c36 (
plain)
1
2
3
4
5
6
7
8
9
|
SAX.setDocumentLocator()
SAX.startDocument()
SAX.comment( comment before the DTD )
SAX.internalSubset(doc, , )
SAX.elementDecl(doc, 2, ...)
SAX.comment( comment after the DTD )
SAX.startElement(doc)
SAX.endElement(doc)
SAX.endDocument()
|