Uses of Class
nu.validator.htmlparser.common.DocumentMode

Packages that use DocumentMode
nu.validator.htmlparser.common This package provides common interfaces and enumerations. 
nu.validator.htmlparser.dom This package provides an HTML5 parser that exposes the document using the DOM API. 
nu.validator.htmlparser.impl This package contains the bulk of parser internals. 
nu.validator.htmlparser.xom This package provides an HTML5 parser that exposes the document through the XOM API. 
nu.validator.servlet   
 

Uses of DocumentMode in nu.validator.htmlparser.common
 

Methods in nu.validator.htmlparser.common that return DocumentMode
static DocumentMode DocumentMode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DocumentMode[] DocumentMode.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in nu.validator.htmlparser.common with parameters of type DocumentMode
 void DocumentModeHandler.documentMode(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)
           
 

Uses of DocumentMode in nu.validator.htmlparser.dom
 

Methods in nu.validator.htmlparser.dom with parameters of type DocumentMode
protected  void DOMTreeBuilder.documentMode(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)
           
 

Uses of DocumentMode in nu.validator.htmlparser.impl
 

Methods in nu.validator.htmlparser.impl with parameters of type DocumentMode
protected  void TreeBuilder.documentMode(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)
           
private  void TreeBuilder.documentModeInternal(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)
           
 

Uses of DocumentMode in nu.validator.htmlparser.xom
 

Fields in nu.validator.htmlparser.xom declared as DocumentMode
private  DocumentMode ModalDocument.mode
           
 

Methods in nu.validator.htmlparser.xom that return DocumentMode
 DocumentMode Mode.getMode()
          Returns the mode.
 DocumentMode ModalDocument.getMode()
          Gets the mode.
 

Methods in nu.validator.htmlparser.xom with parameters of type DocumentMode
protected  void XOMTreeBuilder.documentMode(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)
           
 void Mode.setMode(DocumentMode mode)
          Sets the mode.
 void ModalDocument.setMode(DocumentMode mode)
          Sets the mode.
 

Uses of DocumentMode in nu.validator.servlet
 

Methods in nu.validator.servlet with parameters of type DocumentMode
 void VerifierServletTransaction.documentMode(DocumentMode mode, String publicIdentifier, String systemIdentifier, boolean html4SpecificAdditionalErrorChecks)