Package nu.validator.htmlparser.common
Interface DocumentModeHandler
-
public interface DocumentModeHandlerA callback interface for receiving notification about the document mode.- Version:
- $Id$
- Author:
- hsivonen
-
-
Method Summary
Modifier and Type Method Description voiddocumentMode(DocumentMode mode, java.lang.String publicIdentifier, java.lang.String systemIdentifier)Receive notification of the document mode.
-
-
-
Method Detail
-
documentMode
void documentMode(DocumentMode mode, java.lang.String publicIdentifier, java.lang.String systemIdentifier) throws org.xml.sax.SAXException
Receive notification of the document mode.- Parameters:
mode- the document modepublicIdentifier- the public id of the doctype ornullif unavailablesystemIdentifier- the system id of the doctype ornullif unavailable- Throws:
org.xml.sax.SAXException- if things go wrong
-
-