This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


org.xml.sax.helpers
class XMLFilterImpl

java.lang.Object extended by org.xml.sax.helpers.XMLFilterImpl
All Implemented Interfaces:
ContentHandler, DTDHandler, EntityResolver, ErrorHandler, XMLFilter

public class XMLFilterImpl
extends Object
implements XMLFilter, EntityResolver, DTDHandler, ContentHandler, ErrorHandler

Base class for deriving an XML filter.

This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. See http://www.saxproject.org for further information.

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.


Constructor Summary

          Construct an empty XML filter, with no parent.

          Construct an XML filter with the specified parent.
 
Method Summary
 void
characters(char[] ch, int start, int length)

          Filter a character data event.
 void

          Filter an end document event.
 void
endElement(String uri, String localName, String qName)

          Filter an end element event.
 void

          Filter an end Namespace prefix mapping event.
 void

          Filter an error event.
 void

          Filter a fatal error event.
 ContentHandler

          Get the content event handler.
 DTDHandler

          Get the current DTD event handler.
 EntityResolver

          Get the current entity resolver.
 ErrorHandler

          Get the current error event handler.
 boolean

          Look up the value of a feature.
 XMLReader

          Get the parent reader.
 Object

          Look up the value of a property.
 void
ignorableWhitespace(char[] ch, int start, int length)

          Filter an ignorable whitespace event.
 void
notationDecl(String name, String publicId, String systemId)

          Filter a notation declaration event.
 void

          Parse a document.
 void
parse(String systemId)

          Parse a document.
 void

          Filter a processing instruction event.
 InputSource
resolveEntity(String publicId, String systemId)

          Filter an external entity resolution.
 void

          Set the content event handler.
 void

          Filter a new document locator event.
 void

          Set the DTD event handler.
 void

          Set the entity resolver.
 void

          Set the error event handler.
 void
setFeature(String name, boolean value)

          Set the value of a feature.
 void

          Set the parent reader.
 void
setProperty(String name, Object value)

          Set the value of a property.
 void

          Filter a skipped entity event.
 void

          Filter a start document event.
 void
startElement(String uri, String localName, String qName, Attributes atts)

          Filter a start element event.
 void

          Filter a start Namespace prefix mapping event.
 void
unparsedEntityDecl(String name, String publicId, String systemId, String notationName)

          Filter an unparsed entity declaration event.
 void

          Filter a warning event.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XMLFilterImpl

public XMLFilterImpl()
Construct an empty XML filter, with no parent.

This filter will have no parent: you must assign a parent before you start a parse or do any configuration with setFeature or setProperty, unless you use this as a pure event consumer rather than as an {@link XMLReader}.


XMLFilterImpl

public XMLFilterImpl(XMLReader parent)
Construct an XML filter with the specified parent.

Parameters:
parent
Method Detail

characters

public void characters(char[] ch,
                       int start,
                       int length)
                throws SAXException
Filter a character data event.

Parameters:
ch - An array of characters.
start - The starting position in the array.
length - The number of characters to use from the array.
Throws:
SAXException - The client may throw an exception during processing.

endDocument

public void endDocument()
                 throws SAXException
Filter an end document event.

Throws:
SAXException - The client may throw an exception during processing.

endElement

public void endElement(String uri,
                       String localName,
                       String qName)
                throws SAXException
Filter an end element event.

Parameters:
uri - The element's Namespace URI, or the empty string.
localName - The element's local name, or the empty string.
qName - The element's qualified (prefixed) name, or the empty string.
Throws:
SAXException - The client may throw an exception during processing.

endPrefixMapping

public void endPrefixMapping(String prefix)
                      throws SAXException
Filter an end Namespace prefix mapping event.

Parameters:
prefix - The Namespace prefix.
Throws:
SAXException - The client may throw an exception during processing.

error

public void error(SAXParseException e)
           throws SAXException
Filter an error event.

Parameters:
e - The error as an exception.
Throws:
SAXException - The client may throw an exception during processing.

fatalError

public void fatalError(SAXParseException e)
                throws SAXException
Filter a fatal error event.

Parameters:
e - The error as an exception.
Throws:
SAXException - The client may throw an exception during processing.

getContentHandler

public ContentHandler getContentHandler()
Get the content event handler.

Returns:
The current content handler, or null if none was set.

getDTDHandler

public DTDHandler getDTDHandler()
Get the current DTD event handler.

Returns:
The current DTD handler, or null if none was set.

getEntityResolver

public EntityResolver getEntityResolver()
Get the current entity resolver.

Returns:
The current entity resolver, or null if none was set.

getErrorHandler

public ErrorHandler getErrorHandler()
Get the current error event handler.

Returns:
The current error handler, or null if none was set.

getFeature

public boolean getFeature(String name)
                   throws SAXNotRecognizedException,
                          SAXNotSupportedException
Look up the value of a feature.

This will always fail if the parent is null.

Parameters:
name - The feature name.
Returns:
The current value of the feature.
Throws:
SAXNotRecognizedException - If the feature value can't be assigned or retrieved from the parent.
SAXNotSupportedException - When the parent recognizes the feature name but cannot determine its value at this time.

getParent

public XMLReader getParent()
Get the parent reader.

Returns:
The parent XML reader, or null if none is set.

getProperty

public Object getProperty(String name)
                   throws SAXNotRecognizedException,
                          SAXNotSupportedException
Look up the value of a property.

Parameters:
name - The property name.
Returns:
The current value of the property.
Throws:
SAXNotRecognizedException - If the property value can't be assigned or retrieved from the parent.
SAXNotSupportedException - When the parent recognizes the property name but cannot determine its value at this time.

ignorableWhitespace

public void ignorableWhitespace(char[] ch,
                                int start,
                                int length)
                         throws SAXException
Filter an ignorable whitespace event.

Parameters:
ch - An array of characters.
start - The starting position in the array.
length - The number of characters to use from the array.
Throws:
SAXException - The client may throw an exception during processing.

notationDecl

public void notationDecl(String name,
                         String publicId,
                         String systemId)
                  throws SAXException
Filter a notation declaration event.

Parameters:
name - The notation name.
publicId - The notation's public identifier, or null.
systemId - The notation's system identifier, or null.
Throws:
SAXException - The client may throw an exception during processing.

parse

public void parse(InputSource input)
           throws SAXException,
                  IOException
Parse a document.

Parameters:
input - The input source for the document entity.
Throws:
SAXException - Any SAX exception, possibly wrapping another exception.
IOException - An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.

parse

public void parse(String systemId)
           throws SAXException,
                  IOException
Parse a document.

Parameters:
systemId - The system identifier as a fully-qualified URI.
Throws:
SAXException - Any SAX exception, possibly wrapping another exception.
IOException - An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.

processingInstruction

public void processingInstruction(String target,
                                  String data)
                           throws SAXException
Filter a processing instruction event.

Parameters:
target - The processing instruction target.
data - The text following the target.
Throws:
SAXException - The client may throw an exception during processing.

resolveEntity

public InputSource resolveEntity(String publicId,
                                 String systemId)
                          throws SAXException,
                                 IOException
Filter an external entity resolution.

Parameters:
publicId - The entity's public identifier, or null.
systemId - The entity's system identifier.
Returns:
A new InputSource or null for the default.
Throws:
SAXException - The client may throw an exception during processing.
IOException - The client may throw an I/O-related exception while obtaining the new InputSource.

setContentHandler

public void setContentHandler(ContentHandler handler)
Set the content event handler.

Parameters:
handler - the new content handler

setDocumentLocator

public void setDocumentLocator(Locator locator)
Filter a new document locator event.

Parameters:
locator - The document locator.

setDTDHandler

public void setDTDHandler(DTDHandler handler)
Set the DTD event handler.

Parameters:
handler - the new DTD handler

setEntityResolver

public void setEntityResolver(EntityResolver resolver)
Set the entity resolver.

Parameters:
resolver - The new entity resolver.

setErrorHandler

public void setErrorHandler(ErrorHandler handler)
Set the error event handler.

Parameters:
handler - the new error handler

setFeature

public void setFeature(String name,
                       boolean value)
                throws SAXNotRecognizedException,
                       SAXNotSupportedException
Set the value of a feature.

This will always fail if the parent is null.

Parameters:
name - The feature name.
value - The requested feature value.
Throws:
SAXNotRecognizedException - If the feature value can't be assigned or retrieved from the parent.
SAXNotSupportedException - When the parent recognizes the feature name but cannot set the requested value.

setParent

public void setParent(XMLReader parent)
Set the parent reader.

This is the {@link org.xml.sax.XMLReader XMLReader} from which this filter will obtain its events and to which it will pass its configuration requests. The parent may itself be another filter.

If there is no parent reader set, any attempt to parse or to set or get a feature or property will fail.

Parameters:
parent - The parent XML reader.

setProperty

public void setProperty(String name,
                        Object value)
                 throws SAXNotRecognizedException,
                        SAXNotSupportedException
Set the value of a property.

This will always fail if the parent is null.

Parameters:
name - The property name.
value - The requested property value.
Throws:
SAXNotRecognizedException - If the property value can't be assigned or retrieved from the parent.
SAXNotSupportedException - When the parent recognizes the property name but cannot set the requested value.

skippedEntity

public void skippedEntity(String name)
                   throws SAXException
Filter a skipped entity event.

Parameters:
name - The name of the skipped entity.
Throws:
SAXException - The client may throw an exception during processing.

startDocument

public void startDocument()
                   throws SAXException
Filter a start document event.

Throws:
SAXException - The client may throw an exception during processing.

startElement

public void startElement(String uri,
                         String localName,
                         String qName,
                         Attributes atts)
                  throws SAXException
Filter a start element event.

Parameters:
uri - The element's Namespace URI, or the empty string.
localName - The element's local name, or the empty string.
qName - The element's qualified (prefixed) name, or the empty string.
atts - The element's attributes.
Throws:
SAXException - The client may throw an exception during processing.

startPrefixMapping

public void startPrefixMapping(String prefix,
                               String uri)
                        throws SAXException
Filter a start Namespace prefix mapping event.

Parameters:
prefix - The Namespace prefix.
uri - The Namespace URI.
Throws:
SAXException - The client may throw an exception during processing.

unparsedEntityDecl

public void unparsedEntityDecl(String name,
                               String publicId,
                               String systemId,
                               String notationName)
                        throws SAXException
Filter an unparsed entity declaration event.

Parameters:
name - The entity name.
publicId - The entity's public identifier, or null.
systemId - The entity's system identifier, or null.
notationName - The name of the associated notation.
Throws:
SAXException - The client may throw an exception during processing.

warning

public void warning(SAXParseException e)
             throws SAXException
Filter a warning event.

Parameters:
e - The warning as an exception.
Throws:
SAXException - The client may throw an exception during processing.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.