| org.apache.cocoon.xml.AbstractXMLProducer org.apache.cocoon.xml.DocumentHandlerAdapter
DocumentHandlerAdapter | public class DocumentHandlerAdapter extends AbstractXMLProducer implements DocumentHandler(Code) | | This class is an utility class "adapting" a SAX version 1.0
DocumentHandler , to SAX version 2 ContentHandler .
This class fully supports XML namespaces, converting xmlns and
xmlns:... element attributes into appropriate
startPrefixMapping(...) and endPrefixMapping(...)
calls.
author: Pierpaolo Fumagalli author: (Apache Software Foundation) version: CVS $Id: DocumentHandlerAdapter.java 433543 2006-08-22 06:22:54Z crossley $ |
DocumentHandlerAdapter | public DocumentHandlerAdapter()(Code) | | Create a new DocumentHandlerAdapter instance.
|
DocumentHandlerAdapter | public DocumentHandlerAdapter(XMLConsumer consumer)(Code) | | Create a new DocumentHandlerAdapter instance.
|
DocumentHandlerAdapter | public DocumentHandlerAdapter(ContentHandler content)(Code) | | Create a new DocumentHandlerAdapter instance.
|
characters | public void characters(char ch, int start, int len) throws SAXException(Code) | | Receive notification of character data.
|
endDocument | public void endDocument() throws SAXException(Code) | | Receive notification of the end of a document.
|
ignorableWhitespace | public void ignorableWhitespace(char ch, int start, int len) throws SAXException(Code) | | Receive notification of ignorable whitespace in element content.
|
processingInstruction | public void processingInstruction(String target, String data) throws SAXException(Code) | | Receive notification of a processing instruction.
|
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | Receive an object for locating the origin of SAX document events.
|
startDocument | public void startDocument() throws SAXException(Code) | | Receive notification of the beginning of a document.
|
|
|