com.jclark.xsl.sax2
Class Indenter
java.lang.Object
com.jclark.xsl.sax2.Indenter
- All Implemented Interfaces:
- CommentHandler, OutputContentHandler, RawCharactersHandler, org.xml.sax.ContentHandler
public class Indenter
- extends java.lang.Object
- implements OutputContentHandler, CommentHandler, RawCharactersHandler
performs "pretty-printing" by wrapping another
ContentHandler, intercepting SAX events,
and inserting whitespace events as appropriate.
... (Actually, I don't think it adds any
indenting, just newlines)
Method Summary |
void |
characters(char[] ch,
int start,
int length)
|
void |
comment(java.lang.String contents)
recieve notification that a comment has been encountered
in the parse |
void |
endDocument()
|
void |
endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName)
|
void |
endPrefixMapping(java.lang.String prefix)
|
void |
ignorableWhitespace(char[] ch,
int start,
int length)
|
org.xml.sax.ContentHandler |
init(Destination dest,
java.util.Properties atts)
Initialize the handler with the targetDestination and
output method Properties (from xsl:output + calling environment) |
void |
processingInstruction(java.lang.String target,
java.lang.String data)
|
void |
rawCharacters(java.lang.String chars)
|
void |
setDocumentLocator(org.xml.sax.Locator locator)
|
void |
skippedEntity(java.lang.String name)
|
void |
startDocument()
|
void |
startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes atts)
|
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String namespaceURI)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Indenter
public Indenter(org.xml.sax.ContentHandler handler,
RawCharactersHandler rawCharactersHandler)
init
public org.xml.sax.ContentHandler init(Destination dest,
java.util.Properties atts)
throws java.io.IOException,
org.xml.sax.SAXException
- Description copied from interface:
OutputContentHandler
- Initialize the handler with the targetDestination and
output method Properties (from xsl:output + calling environment)
- Specified by:
init
in interface OutputContentHandler
- Throws:
java.io.IOException
org.xml.sax.SAXException
setDocumentLocator
public void setDocumentLocator(org.xml.sax.Locator locator)
- Specified by:
setDocumentLocator
in interface org.xml.sax.ContentHandler
startDocument
public void startDocument()
throws org.xml.sax.SAXException
- Specified by:
startDocument
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
endDocument
public void endDocument()
throws org.xml.sax.SAXException
- Specified by:
endDocument
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
startElement
public void startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes atts)
throws org.xml.sax.SAXException
- Specified by:
startElement
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
endElement
public void endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName)
throws org.xml.sax.SAXException
- Specified by:
endElement
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
characters
public void characters(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
- Specified by:
characters
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
ignorableWhitespace
public void ignorableWhitespace(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
- Specified by:
ignorableWhitespace
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
rawCharacters
public void rawCharacters(java.lang.String chars)
throws org.xml.sax.SAXException
- Specified by:
rawCharacters
in interface RawCharactersHandler
- Throws:
org.xml.sax.SAXException
startPrefixMapping
public void startPrefixMapping(java.lang.String prefix,
java.lang.String namespaceURI)
throws org.xml.sax.SAXException
- Specified by:
startPrefixMapping
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
endPrefixMapping
public void endPrefixMapping(java.lang.String prefix)
throws org.xml.sax.SAXException
- Specified by:
endPrefixMapping
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
skippedEntity
public void skippedEntity(java.lang.String name)
throws org.xml.sax.SAXException
- Specified by:
skippedEntity
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
processingInstruction
public void processingInstruction(java.lang.String target,
java.lang.String data)
throws org.xml.sax.SAXException
- Specified by:
processingInstruction
in interface org.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
comment
public void comment(java.lang.String contents)
throws org.xml.sax.SAXException
- Description copied from interface:
CommentHandler
- recieve notification that a comment has been encountered
in the parse
- Specified by:
comment
in interface CommentHandler
- Throws:
org.xml.sax.SAXException