Construct an empty XML filter, with no parent.
Construct an XML filter with the specified parent.
Filter a character data event.
Filter an end document event.
Filter an end element event.
Filter an end Namespace prefix mapping event.
Filter an error event.
Filter a fatal error event.
Get the current entity resolver.
Get the current error event handler.
Look up the value of a feature.
Get the parent reader.
Look up the value of a property.
Get the content event handler.
Filter an ignorable whitespace event.
Parse the given content.
Filter a processing instruction event.
Filter an external entity resolution.
Filter a new document locator event.
Set the entity resolver.
Set the error event handler.
Set the value of a feature.
Set the parent reader.
Set the value of a property.
Set the content event handler.
Filter a skipped entity event.
Filter a start document event.
Filter a start element event.
Filter a start Namespace prefix mapping event.
Filter a warning event.
Receive an object for locating the origin of SAX document events.
Receive notification of the beginning of a document.
Receive notification of the end of a document.
Begin the scope of a prefix-URI Namespace mapping.
End the scope of a prefix-URI mapping.
Receive notification of the beginning of an element.
Receive notification of the end of an element.
Receive notification of character data.
Receive notification of ignorable whitespace in element content.
Receive notification of a processing instruction.
Receive notification of a skipped entity. This is not called for entity references within markup constructs such as element start tags or markup declarations. (The XML recommendation requires reporting skipped external entities. SAX also reports internal entity expansion/non-expansion, except within markup constructs.)
Set the parent reader.
Get the parent reader.
Allow the application to resolve external entities.
Receive notification of a warning.
Receive notification of a recoverable error.
Receive notification of a non-recoverable error.
Base class for deriving an XML filter.
<p>This class is designed to sit between an {@link org.xml.sax.XMLReader XMLReader} and the client application's event handlers. By default, it does nothing but pass requests up to the reader and events on to the handlers unmodified, but subclasses can override specific methods to modify the event stream or the configuration requests as they pass through.</p>
@since SAX 2.0 @author David Megginson @version 2.0.1 (sax2r2) @see org.xml.sax.XMLFilter @see org.xml.sax.XMLReader @see org.xml.sax.EntityResolver @see org.xml.sax.ContentHandler @see org.xml.sax.ErrorHandler