public interface DTDHandler:
Handler for basic DTD declaration events.
This interface reports notation and unparsed entity declarations required by XML processors.
@example `klyn import org.xml.sax
handler as DTDHandler = null if handler is not null: handler.notationDecl("gif", null, "image/gif")
| Modifier and Type | Member | Description |
|---|---|---|
| public | notationDeclnotationDecl(name as String, publicId as String, systemId as String) as Void throws SAXException |
Receives a notation declaration. |
| public | unparsedEntityDeclunparsedEntityDecl(name as String, publicId as String, systemId as String, notationName as String) as Void throws SAXException |
Receives an unparsed entity declaration. |