DTDHandler
interfacein packageorg.xml.sax
public interface DTDHandler:
DTDHandler

Handler for basic DTD declaration events.

This interface reports notation and unparsed entity declarations required by XML processors.

Example
import org.xml.sax

handler as DTDHandler = null
if handler is not null:
handler.notationDecl("gif", null, "image/gif")
Methods
Modifier and Type Member Description
public notationDecl
notationDecl(name as String, publicId as String, systemId as String) as Void throws SAXException
Receives a notation declaration.
public unparsedEntityDecl
unparsedEntityDecl(name as String, publicId as String, systemId as String, notationName as String) as Void throws SAXException
Receives an unparsed entity declaration.