com.icl.saxon.output
Class HTMLIndenter

java.lang.Object
  extended bycom.icl.saxon.output.Emitter
      extended bycom.icl.saxon.output.ProxyEmitter
          extended bycom.icl.saxon.output.HTMLIndenter
All Implemented Interfaces:
Result

public class HTMLIndenter
extends ProxyEmitter

HTMLIndenter: This ProxyEmitter indents HTML elements, by adding whitespace character data where appropriate. The character data is never added when within an inline element. The string used for indentation defaults to four spaces, but may be set using the indent-chars property Author Michael H. Kay


Field Summary
 
Fields inherited from class com.icl.saxon.output.ProxyEmitter
baseEmitter, outputProperties
 
Fields inherited from class com.icl.saxon.output.Emitter
locator, namePool, outputStream, systemId, writer
 
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
 
Constructor Summary
HTMLIndenter()
           
 
Method Summary
 void characters(char[] chars, int start, int len)
          Output character data
 void comment(char[] chars, int start, int len)
          Output a comment
 void endDocument()
          End of document
 void endElement(int nameCode)
          Output element end tag
 void ignorableWhitespace(char[] chars, int start, int len)
          Output ignorable white space
 void processingInstruction(java.lang.String target, java.lang.String data)
          Output a processing instruction
 void startDocument()
          Start of document
 void startElement(int nameCode, org.xml.sax.Attributes atts, int[] namespaces, int nscount)
          Output element start tag
 
Methods inherited from class com.icl.saxon.output.ProxyEmitter
setDocumentLocator, setEscaping, setNamePool, setOutputProperties, setUnderlyingEmitter, setUnparsedEntity, setWriter
 
Methods inherited from class com.icl.saxon.output.Emitter
getNamePool, getOutputProperties, getOutputStream, getSystemId, getWriter, makeEmitter, setOutputStream, setSystemId, usesWriter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HTMLIndenter

public HTMLIndenter()
Method Detail

startDocument

public void startDocument()
                   throws TransformerException
Start of document

Overrides:
startDocument in class ProxyEmitter
Throws:
TransformerException

startElement

public void startElement(int nameCode,
                         org.xml.sax.Attributes atts,
                         int[] namespaces,
                         int nscount)
                  throws TransformerException
Output element start tag

Overrides:
startElement in class ProxyEmitter
Throws:
TransformerException

endElement

public void endElement(int nameCode)
                throws TransformerException
Output element end tag

Overrides:
endElement in class ProxyEmitter
Throws:
TransformerException

processingInstruction

public void processingInstruction(java.lang.String target,
                                  java.lang.String data)
                           throws TransformerException
Output a processing instruction

Overrides:
processingInstruction in class ProxyEmitter
Throws:
TransformerException

characters

public void characters(char[] chars,
                       int start,
                       int len)
                throws TransformerException
Output character data

Overrides:
characters in class ProxyEmitter
Throws:
TransformerException

ignorableWhitespace

public void ignorableWhitespace(char[] chars,
                                int start,
                                int len)
                         throws TransformerException
Output ignorable white space

Throws:
TransformerException

comment

public void comment(char[] chars,
                    int start,
                    int len)
             throws TransformerException
Output a comment

Overrides:
comment in class ProxyEmitter
Throws:
TransformerException

endDocument

public void endDocument()
                 throws TransformerException
End of document

Overrides:
endDocument in class ProxyEmitter
Throws:
TransformerException