Package org.w3c.tidy
Class ParserImpl.ParseList
- java.lang.Object
-
- org.w3c.tidy.ParserImpl.ParseList
-
- All Implemented Interfaces:
Parser
- Enclosing class:
- ParserImpl
public static class ParserImpl.ParseList extends java.lang.Object implements Parser
Parser for LIST.
-
-
Constructor Summary
Constructors Constructor Description ParseList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidparse(Lexer lexer, Node list, short mode, int nestingLevel)Parse the given node.
-
-
-
Method Detail
-
parse
public void parse(Lexer lexer, Node list, short mode, int nestingLevel) throws ExcessiveNesting
Description copied from interface:ParserParse the given node.- Specified by:
parsein interfaceParser- Parameters:
lexer- Lexerlist- node created by the lexer upon seeing the start tag, or by the parser when the start tag is inferredmode- content modenestingLevel- The current nesting level of the document. Extremely nested documents are considered an error.- Throws:
ExcessiveNesting- When excessive nesting is detected.
-
-