Uses of Interface
org.htmlunit.html.ElementFactory
-
Packages that use ElementFactory Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content.org.htmlunit.html.parser Contains the html parser interface.org.htmlunit.html.parser.neko Contains the neko html parser.org.htmlunit.svg Classes specific to Scalable Vector Graphics. -
-
Uses of ElementFactory in org.htmlunit.html
Classes in org.htmlunit.html that implement ElementFactory Modifier and Type Class Description class
DefaultElementFactory
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Element factory which creates elements by calling the constructor on a givenHtmlElement
subclass.class
UnknownElementFactory
A factory for elements encountered in parsing the input which are not represented by dedicated element classes. -
Uses of ElementFactory in org.htmlunit.html.parser
Methods in org.htmlunit.html.parser that return ElementFactory Modifier and Type Method Description ElementFactory
HTMLParser. getElementFactory(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, boolean insideSvg, boolean svgSupport)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns the pre-registered element factory corresponding to the specified tag, or an UnknownElementFactory.ElementFactory
HTMLParser. getFactory(java.lang.String tagName)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.ElementFactory
HTMLParser. getSvgFactory()
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. -
Uses of ElementFactory in org.htmlunit.html.parser.neko
Fields in org.htmlunit.html.parser.neko with type parameters of type ElementFactory Modifier and Type Field Description private static java.util.Map<java.lang.String,ElementFactory>
HtmlUnitNekoHtmlParser. ELEMENT_FACTORIES
Methods in org.htmlunit.html.parser.neko that return ElementFactory Modifier and Type Method Description ElementFactory
HtmlUnitNekoHtmlParser. getElementFactory(SgmlPage page, java.lang.String namespaceURI, java.lang.String qualifiedName, boolean insideSvg, boolean svgSupport)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns the pre-registered element factory corresponding to the specified tag, or an UnknownElementFactory.ElementFactory
HtmlUnitNekoHtmlParser. getFactory(java.lang.String tagName)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.ElementFactory
HtmlUnitNekoHtmlParser. getSvgFactory()
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. -
Uses of ElementFactory in org.htmlunit.svg
Classes in org.htmlunit.svg that implement ElementFactory Modifier and Type Class Description class
SvgElementFactory
Element factory which creates elements by calling the constructor on a givenSvgElement
subclass.
-