Uses of Interface gnu.xml.pipeline.EventConsumer

Uses in package gnu.xml.pipeline

Classes implementing gnu.xml.pipeline.EventConsumer

class
Input is sent as an XML request to given URI, and the output of this filter is the parsed response to that request.
class
This consumer builds a DOM Document from its input, acting either as a pipeline terminus or as an intermediate buffer.
class
A customizable event consumer, used to assemble various kinds of filters using SAX handlers and an optional second consumer.
class
Pipeline filter to remember XHTML links found in a document, so they can later be crawled.
class
This filter ensures that element and attribute names are properly prefixed, and that such prefixes are declared.
class
Fans its events out to two other consumers, a "tee" filter stage in an event pipeline.
class
Terminates a pipeline, consuming events to print them as well formed XML (or XHTML) text.
class
This class checks SAX2 events to report validity errors; it works as both a filter and a terminus on an event pipeline.
class
This filter reports fatal exceptions in the case of event streams that are not well formed.
class
Filter to process an XPointer-free subset of XInclude, supporting its use as a kind of replacement for parsed general entities.
class
Packages an XSLT transform as a pipeline component.

Constructors with parameter type gnu.xml.pipeline.EventConsumer

Initializes a call filter so that its inputs are sent to the specified URI, and its outputs are sent to the next consumer provided.
Configures this consumer as a buffer/filter, using the specified DOM implementation when constructing its result value.
Handlers that are not otherwise set will default to those from the specified consumer, making it easy to pass events through.
Constructs a new event filter, which collects links in private data structure for later enumeration and passes all events, unmodified, to the next consumer.
Passes events through to the specified consumer, after first processing them.
Constructs a consumer which sends all its events to the first consumer, and then the second one.
Creates a pipeline filter which reports validity errors and then passes events on to the next consumer if they were not fatal.
Passes events through to the specified consumer, after first processing them.
Creates a filter that performs the specified transform.

Methods with parameter type gnu.xml.pipeline.EventConsumer

void
EventFilter.bind(XMLReader producer, EventConsumer consumer)
Binds the standard SAX2 handlers from the specified consumer pipeline to the specified producer.
EventConsumer
Extends an existing pipeline by prepending the filter pipeline to the specified consumer.
EventConsumer
Extends an existing pipeline by prepending a pre-tokenized filter pipeline to the specified consumer.

Methods with return type gnu.xml.pipeline.EventConsumer

EventConsumer
Creates a simple pipeline according to the description string passed in.
EventConsumer
Extends an existing pipeline by prepending the filter pipeline to the specified consumer.
EventConsumer
Extends an existing pipeline by prepending a pre-tokenized filter pipeline to the specified consumer.
EventConsumer
Returns the first pipeline to get event calls.
EventConsumer
Returns the next event consumer in sequence; or null if there is no such handler.
EventConsumer
Returns the second pipeline to get event calls.

Uses in package gnu.xml.dom

Classes implementing gnu.xml.pipeline.EventConsumer

class
Event consumer which constructs DOM documents using the implementation in this package, using SAX2 events.

Constructors with parameter type gnu.xml.pipeline.EventConsumer

Constructs an unconfigured event consumer, as a stage in a SAX event pipeline.