startDTD

startDTD(name:     String;
         publicId: String;
         systemId: String);

The startDTD event method of the JadeXMLParser class receives notification of the start of DTD declarations, if any. The startDTD event method parameters are listed in the following table.

Parameter Description
name Document-type name
publicId Declared public identifier for the external DTD subset or null ("") if none was declared
systemId Declared system identifier for the external DTD subset or null ("") if none was declared

The parser invokes this method (if implemented) at the beginning of the DOCTYPE declaration. If the document has no DOCTYPE declaration, this method is not invoked.