Uses of Interface
org.htmlparser.scanners.Scanner
Packages that use Scanner
Package
Description
The basic API classes which will be used by most developers when working with
the HTML Parser.
The nodes package has the concrete node implementations.
The scanners package contains classes responsible for the tertiary
identification of tags.
-
Uses of Scanner in org.htmlparser
Methods in org.htmlparser that return ScannerModifier and TypeMethodDescriptionTag.getThisScanner()
Return the scanner associated with this tag.Methods in org.htmlparser with parameters of type ScannerModifier and TypeMethodDescriptionvoid
Tag.setThisScanner
(Scanner scanner) Set the scanner associated with this tag. -
Uses of Scanner in org.htmlparser.nodes
Fields in org.htmlparser.nodes declared as ScannerModifier and TypeFieldDescriptionprotected static final Scanner
TagNode.mDefaultScanner
The default scanner for non-composite tags.Methods in org.htmlparser.nodes that return ScannerModifier and TypeMethodDescriptionTagNode.getThisScanner()
Return the scanner associated with this tag.Methods in org.htmlparser.nodes with parameters of type ScannerModifier and TypeMethodDescriptionvoid
TagNode.setThisScanner
(Scanner scanner) Set the scanner associated with this tag. -
Uses of Scanner in org.htmlparser.scanners
Classes in org.htmlparser.scanners that implement ScannerModifier and TypeClassDescriptionclass
The main scanning logic for nested tags.class
Placeholder for yet to be written scanner for JSP tags.class
The ScriptScanner handles script CDATA.class
The StyleScanner handles style elements.class
TagScanner is an abstract superclass, subclassed to create specific scanners.