Uses of Interface
htmlflow.flowifier.HtmlToJavaHtmlFlowNodeVisitor
-
Packages that use HtmlToJavaHtmlFlowNodeVisitor Package Description htmlflow.flowifier -
-
Uses of HtmlToJavaHtmlFlowNodeVisitor in htmlflow.flowifier
Classes in htmlflow.flowifier that implement HtmlToJavaHtmlFlowNodeVisitor Modifier and Type Class Description classAbstractHtmlToJavaHtmlFlowNodeVisitor<T extends Appendable>Defines most of the implementation for a typical visitor of a JSoup node that converts the HTML source code into a Java class except the storage managed by the appendableclassDefaultHtmlToJavaHtmlFlowNodeVisitorDefault implementation of the visitor of a JSoup node that converts the HTML source code into a Java class, it uses a StringBuilder to append the content of the Java class.Methods in htmlflow.flowifier with parameters of type HtmlToJavaHtmlFlowNodeVisitor Modifier and Type Method Description <T extends Appendable>
TFlowifier. toFlow(String url, HtmlToJavaHtmlFlowNodeVisitor<T> htmlToJavaHtmlFlowNodeVisitor)Returns the Java source code of a class that generates the HTML source code of the document at the given URL<T extends Appendable>
TFlowifier. toFlow(org.jsoup.nodes.Document doc, HtmlToJavaHtmlFlowNodeVisitor<T> htmlToJavaHtmlFlowNodeVisitor)Returns the Java source code of a class that generates the HTML source code of the given document<T extends Appendable>
TFlowifier. toFlow(org.jsoup.nodes.Node node, HtmlToJavaHtmlFlowNodeVisitor<T> htmlToJavaHtmlFlowNodeVisitor)Returns the Java source code of a class that generates the HTML source code of the given node
-