public interface LexicalHandler:
SAX2 extension handler for lexical XML events.
Parsers expose this handler through the http://xml.org/sax/properties/lexical-handler property when supported.
@example `klyn import org.xml.sax.ext
handler as LexicalHandler = null if handler is not null: handler.startCDATA()
| Modifier and Type | Member | Description |
|---|---|---|
| public | commentcomment(ch as Array<Char>, start as Int, length as Int) as Void throws SAXException |
Reports an XML comment. |
| public | endCDATAendCDATA() as Void throws SAXException |
Reports the end of a CDATA section. |
| public | endDTDendDTD() as Void throws SAXException |
Reports the end of a DTD declaration. |
| public | endEntityendEntity(name as String) as Void throws SAXException |
Reports the end of an entity. |
| public | startCDATAstartCDATA() as Void throws SAXException |
Reports the start of a CDATA section. |
| public | startDTDstartDTD(name as String, publicId as String, systemId as String) as Void throws SAXException |
Reports the start of a DTD declaration. |
| public | startEntitystartEntity(name as String) as Void throws SAXException |
Reports the start of an entity. |