Uses of Interface
org.attoparser.IAttributeSequenceHandler
-
Packages that use IAttributeSequenceHandler Package Description org.attoparser Main parser and handler artifacts: basic interfaces and implementations.org.attoparser.discard Handlers for discarding markup.org.attoparser.dom Handlers for creating DOM trees as a result of parsing.org.attoparser.duplicate Handlers for duplicating events between more than one handler.org.attoparser.minimize Handlers for minimizing (compacting) HTML markup.org.attoparser.output Handlers for outputting markup as a result of parsing.org.attoparser.prettyhtml Handlers for creating a pretty-HTML representation of parsing events.org.attoparser.select Handlers for filtering a part or several parts of markup during parsing in a fast and efficient way.org.attoparser.simple Artifacts for parsing using a simplified version of the handler interfaces.org.attoparser.trace Handlers for creating traces of parsing events (for testing/debugging). -
-
Uses of IAttributeSequenceHandler in org.attoparser
Subinterfaces of IAttributeSequenceHandler in org.attoparser Modifier and Type Interface Description interfaceIElementHandlerInterface to be implemented by all handlers capable of receiving events about elements.interfaceIMarkupHandlerInterface to be implemented by all Markup Handlers.Classes in org.attoparser that implement IAttributeSequenceHandler Modifier and Type Class Description classAbstractChainedMarkupHandlerBase abstract implementation ofIMarkupHandlerthat implements all of its event handlers by delegating these events to anotherIMarkupHandlerobject passed during construction.classAbstractMarkupHandlerBase abstract implementation ofIMarkupHandlerthat implements all of its methods as no-ops.(package private) classHtmlMarkupHandler(package private) classMarkupEventProcessorHandlerprivate static classParsingXmlDeclarationMarkupUtil.XmlDeclarationAttributeProcessorMethods in org.attoparser with parameters of type IAttributeSequenceHandler Modifier and Type Method Description static voidParsingAttributeSequenceUtil. parseAttributeSequence(char[] buffer, int offset, int len, int line, int col, IAttributeSequenceHandler handler) -
Uses of IAttributeSequenceHandler in org.attoparser.discard
Classes in org.attoparser.discard that implement IAttributeSequenceHandler Modifier and Type Class Description classDiscardMarkupHandlerImplementation ofIMarkupHandlerthat simply discards all events. -
Uses of IAttributeSequenceHandler in org.attoparser.dom
Classes in org.attoparser.dom that implement IAttributeSequenceHandler Modifier and Type Class Description classDOMBuilderMarkupHandlerImplementation ofIMarkupHandlerthat builds a DOM tree using objects of classes from package org.attoparser.dom. -
Uses of IAttributeSequenceHandler in org.attoparser.duplicate
Classes in org.attoparser.duplicate that implement IAttributeSequenceHandler Modifier and Type Class Description classDuplicateMarkupHandlerImplementation ofIMarkupHandlerused for duplicating events, sending them to two different handlers. -
Uses of IAttributeSequenceHandler in org.attoparser.minimize
Classes in org.attoparser.minimize that implement IAttributeSequenceHandler Modifier and Type Class Description classMinimizeHtmlMarkupHandlerImplementation ofIMarkupHandlerused for minimizing (compacting) HTML markup. -
Uses of IAttributeSequenceHandler in org.attoparser.output
Classes in org.attoparser.output that implement IAttributeSequenceHandler Modifier and Type Class Description classOutputMarkupHandlerImplementation ofIMarkupHandlerused for writing received parsing events as markup output.classTextOutputMarkupHandlerImplementation ofIMarkupHandlerused for writing received parsing events as text output, by ignoring all events except the Text ones. -
Uses of IAttributeSequenceHandler in org.attoparser.prettyhtml
Classes in org.attoparser.prettyhtml that implement IAttributeSequenceHandler Modifier and Type Class Description classPrettyHtmlMarkupHandlerImplementation ofIMarkupHandlerused for pretty-printing the result of parsing the input markup. -
Uses of IAttributeSequenceHandler in org.attoparser.select
Classes in org.attoparser.select that implement IAttributeSequenceHandler Modifier and Type Class Description classAttributeSelectionMarkingMarkupHandlerImplementation of theIMarkupHandlerthat adds an attribute (with a user-specified name) to all elements that match one or more selectors, as determined by aBlockSelectorMarkupHandlerorNodeSelectorMarkupHandlerhandler.classBlockSelectorMarkupHandlerImplementation ofIMarkupHandlerable to apply block selection based on a set of specified markup selectors (seeorg.attoparser.select).classNodeSelectorMarkupHandlerImplementation ofIMarkupHandlerable to apply node-selection based on a set of specified markup selectors (seeorg.attoparser.select). -
Uses of IAttributeSequenceHandler in org.attoparser.simple
Classes in org.attoparser.simple that implement IAttributeSequenceHandler Modifier and Type Class Description classSimplifierMarkupHandlerImplementation of theIMarkupHandlerinterface aimed at converting the events launched through this interface to the simpler ones at theISimpleMarkupHandlerinterface. -
Uses of IAttributeSequenceHandler in org.attoparser.trace
Classes in org.attoparser.trace that implement IAttributeSequenceHandler Modifier and Type Class Description classTraceBuilderMarkupHandlerImplementation ofIMarkupHandlerused for building a trace of parsing events which can be examined afterwards.
-