net.sf.stax
Class SAX2StAXAdaptor

java.lang.Object
  extended by net.sf.stax.SAX2StAXAdaptor
All Implemented Interfaces:
ContentHandler

public final class SAX2StAXAdaptor
extends Object
implements ContentHandler

Lightweight adaptor which translates SAX content events into StAX form, and provides delegation and id mapping services.

Version:
$Revision: 1.4 $ $Date: 2006/01/02 20:37:34 $
Author:
Thomas Down, Michael Heuer

Constructor Summary
SAX2StAXAdaptor(StAXContentHandler rootHandler)
          Construct a new SAX Content handler which wraps a StAX handler.
SAX2StAXAdaptor(StAXContentHandler rootHandler, boolean checkIdsResolveFlag)
          Construct a new SAX Content handler which wraps a StAX handler.
SAX2StAXAdaptor(StAXContentHandler rootHandler, boolean checkIdsResolveFlag, Map existingIds)
          Construct a new SAX Content handler which wraps a StAX handler.
 
Method Summary
 void characters(char[] ch, int start, int end)
           
 void endDocument()
           
 void endElement(String nsURI, String localName, String qName)
           
 void endPrefixMapping(String prefix)
           
 void ignorableWhitespace(char[] ch, int start, int end)
           
 void processingInstruction(String target, String data)
           
 void setDocumentLocator(Locator locator)
           
 void skippedEntity(String name)
           
 void startDocument()
           
 void startElement(String nsURI, String localName, String qName, Attributes attrs)
           
 void startPrefixMapping(String prefix, String uri)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SAX2StAXAdaptor

public SAX2StAXAdaptor(StAXContentHandler rootHandler,
                       boolean checkIdsResolveFlag,
                       Map existingIds)
Construct a new SAX Content handler which wraps a StAX handler.

Parameters:
rootHandler - root handler
checkIdsResolveFlag - true if endDocument should throw an exception if there are unresolved ids
existingIds - map of existing ids to items

SAX2StAXAdaptor

public SAX2StAXAdaptor(StAXContentHandler rootHandler,
                       boolean checkIdsResolveFlag)
Construct a new SAX Content handler which wraps a StAX handler.

Parameters:
rootHandler - root handler
checkIdsResolveFlag - true if endDocument should throw an exception if there are unresolved ids

SAX2StAXAdaptor

public SAX2StAXAdaptor(StAXContentHandler rootHandler)
Construct a new SAX Content handler which wraps a StAX handler.

Parameters:
rootHandler - root handler
Method Detail

startDocument

public void startDocument()
                   throws SAXException
Specified by:
startDocument in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

endDocument

public void endDocument()
                 throws SAXException
Specified by:
endDocument in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

characters

public void characters(char[] ch,
                       int start,
                       int end)
                throws SAXException
Specified by:
characters in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

ignorableWhitespace

public void ignorableWhitespace(char[] ch,
                                int start,
                                int end)
                         throws SAXException
Specified by:
ignorableWhitespace in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

startPrefixMapping

public void startPrefixMapping(String prefix,
                               String uri)
                        throws SAXException
Specified by:
startPrefixMapping in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

endPrefixMapping

public void endPrefixMapping(String prefix)
                      throws SAXException
Specified by:
endPrefixMapping in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

processingInstruction

public void processingInstruction(String target,
                                  String data)
                           throws SAXException
Specified by:
processingInstruction in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

setDocumentLocator

public void setDocumentLocator(Locator locator)
Specified by:
setDocumentLocator in interface ContentHandler
See Also:
ContentHandler

skippedEntity

public void skippedEntity(String name)
                   throws SAXException
Specified by:
skippedEntity in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

startElement

public void startElement(String nsURI,
                         String localName,
                         String qName,
                         Attributes attrs)
                  throws SAXException
Specified by:
startElement in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler

endElement

public void endElement(String nsURI,
                       String localName,
                       String qName)
                throws SAXException
Specified by:
endElement in interface ContentHandler
Throws:
SAXException
See Also:
ContentHandler


Copyright (c) 2001-2006 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).