Uses of Interface
jodd.lagarto.TagVisitor
-
Packages that use TagVisitor Package Description jodd.lagarto Jodd Lagarto - fast markup language (html/xml) event-based parser.jodd.lagarto.adapter Various useful Lagarto tag adapters that manipulate HTML content.jodd.lagarto.dom Lagarto DOM - create cool DOM tree with Lagarto parser.jodd.lagarto.visitor Some visitor implementations. -
-
Uses of TagVisitor in jodd.lagarto
Classes in jodd.lagarto that implement TagVisitor Modifier and Type Class Description classEmptyTagVisitorEmptyTagVisitor.classTagAdapterTag adapter.classTagVisitorsVisitor over several target visitors at once.Fields in jodd.lagarto declared as TagVisitor Modifier and Type Field Description protected TagVisitorTagAdapter. targetprotected TagVisitor[]TagVisitors. targetsprotected TagVisitorLagartoParser. visitorMethods in jodd.lagarto that return TagVisitor Modifier and Type Method Description TagVisitorTagAdapter. getTarget()Returns target tag visitor.Methods in jodd.lagarto with parameters of type TagVisitor Modifier and Type Method Description voidLagartoParser. parse(TagVisitor visitor)Parses content and emits event to providedTagVisitor.Constructors in jodd.lagarto with parameters of type TagVisitor Constructor Description TagAdapter(TagVisitor target)TagVisitors(TagVisitor... targets) -
Uses of TagVisitor in jodd.lagarto.adapter
Classes in jodd.lagarto.adapter that implement TagVisitor Modifier and Type Class Description classStripHtmlTagAdapterStrips all non-important characters from HTML.classUrlRewriterTagAdapterURL Rewriter.Constructors in jodd.lagarto.adapter with parameters of type TagVisitor Constructor Description StripHtmlTagAdapter(TagVisitor target)UrlRewriterTagAdapter(TagVisitor target, java.util.function.Function<java.lang.CharSequence,java.lang.CharSequence> rewriter) -
Uses of TagVisitor in jodd.lagarto.dom
Classes in jodd.lagarto.dom that implement TagVisitor Modifier and Type Class Description classLagartoDOMBuilderTagVisitorLagarto tag visitor that builds a DOM tree. -
Uses of TagVisitor in jodd.lagarto.visitor
Classes in jodd.lagarto.visitor that implement TagVisitor Modifier and Type Class Description classTagWriterTag writer outputs content to anAppendable.
-