Uses of Interface
org.attoparser.IElementHandler
Packages that use IElementHandler
Package
Description
Main parser and handler artifacts: basic interfaces and implementations.
Handlers for discarding markup.
Handlers for creating DOM trees as a result of parsing.
Handlers for duplicating events between more than one handler.
Handlers for minimizing (compacting) HTML markup.
Handlers for outputting markup as a result of parsing.
Handlers for creating a pretty-HTML representation of parsing events.
Handlers for filtering a part or several parts of markup during parsing
in a fast and efficient way.
Artifacts for parsing using a simplified version of the handler interfaces.
Handlers for creating traces of parsing events (for testing/debugging).
-
Uses of IElementHandler in org.attoparser
Subinterfaces of IElementHandler in org.attoparserModifier and TypeInterfaceDescriptioninterface
Interface to be implemented by all Markup Handlers.Classes in org.attoparser that implement IElementHandlerModifier and TypeClassDescriptionclass
Base abstract implementation ofIMarkupHandler
that implements all of its event handlers by delegating these events to anotherIMarkupHandler
object passed during construction.class
Base abstract implementation ofIMarkupHandler
that implements all of its methods as no-ops.(package private) final class
(package private) final class
-
Uses of IElementHandler in org.attoparser.discard
Classes in org.attoparser.discard that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
that simply discards all events. -
Uses of IElementHandler in org.attoparser.dom
Classes in org.attoparser.dom that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
that builds a DOM tree using objects of classes from package org.attoparser.dom. -
Uses of IElementHandler in org.attoparser.duplicate
Classes in org.attoparser.duplicate that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
used for duplicating events, sending them to two different handlers. -
Uses of IElementHandler in org.attoparser.minimize
Classes in org.attoparser.minimize that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
used for minimizing (compacting) HTML markup. -
Uses of IElementHandler in org.attoparser.output
Classes in org.attoparser.output that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
used for writing received parsing events as markup output.final class
Implementation ofIMarkupHandler
used for writing received parsing events as text output, by ignoring all events except the Text ones. -
Uses of IElementHandler in org.attoparser.prettyhtml
Classes in org.attoparser.prettyhtml that implement IElementHandlerModifier and TypeClassDescriptionclass
Implementation ofIMarkupHandler
used for pretty-printing the result of parsing the input markup. -
Uses of IElementHandler in org.attoparser.select
Classes in org.attoparser.select that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation of theIMarkupHandler
that adds an attribute (with a user-specified name) to all elements that match one or more selectors, as determined by aBlockSelectorMarkupHandler
orNodeSelectorMarkupHandler
handler.final class
Implementation ofIMarkupHandler
able to apply block selection based on a set of specified markup selectors (seeorg.attoparser.select
).final class
Implementation ofIMarkupHandler
able to apply node-selection based on a set of specified markup selectors (seeorg.attoparser.select
). -
Uses of IElementHandler in org.attoparser.simple
Classes in org.attoparser.simple that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation of theIMarkupHandler
interface aimed at converting the events launched through this interface to the simpler ones at theISimpleMarkupHandler
interface. -
Uses of IElementHandler in org.attoparser.trace
Classes in org.attoparser.trace that implement IElementHandlerModifier and TypeClassDescriptionfinal class
Implementation ofIMarkupHandler
used for building a trace of parsing events which can be examined afterwards.