com.jclark.xsl.sax
Class HTMLOutputHandler

java.lang.Object
  extended by com.jclark.xsl.sax.HTMLOutputHandler
All Implemented Interfaces:
CommentHandler, OutputDocumentHandler, RawCharactersHandler, org.xml.sax.DocumentHandler

public class HTMLOutputHandler
extends java.lang.Object
implements OutputDocumentHandler, CommentHandler, RawCharactersHandler

A OutputDocumentHandler that writes an HTML representation.


Constructor Summary
HTMLOutputHandler()
           
HTMLOutputHandler(java.io.Writer writer)
           
 
Method Summary
 void characters(char[] ch, int off, int len)
           
 void comment(java.lang.String str)
          recieve notification that a comment has been encountered in the parse
 void endDocument()
           
 void endElement(java.lang.String name)
           
 void ignorableWhitespace(char[] ch, int off, int len)
           
 org.xml.sax.DocumentHandler init(Destination dest, org.xml.sax.AttributeList atts)
          initialize with the given target destination and xsl:output attributes.
 void processingInstruction(java.lang.String target, java.lang.String data)
           
 void rawCharacters(java.lang.String chars)
           
 void setDocumentLocator(org.xml.sax.Locator loc)
           
 void setWriter(java.io.Writer writer)
           
 void startDocument()
           
 void startElement(java.lang.String name, org.xml.sax.AttributeList atts)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HTMLOutputHandler

public HTMLOutputHandler()

HTMLOutputHandler

public HTMLOutputHandler(java.io.Writer writer)
Method Detail

init

public org.xml.sax.DocumentHandler init(Destination dest,
                                        org.xml.sax.AttributeList atts)
                                 throws java.io.IOException
Description copied from interface: OutputDocumentHandler
initialize with the given target destination and xsl:output attributes.

Specified by:
init in interface OutputDocumentHandler
Returns:
a new DocumentHandler appropriate to the task, or possibly this
Throws:
java.io.IOException

setWriter

public void setWriter(java.io.Writer writer)

startDocument

public void startDocument()
                   throws org.xml.sax.SAXException
Specified by:
startDocument in interface org.xml.sax.DocumentHandler
Throws:
org.xml.sax.SAXException

characters

public void characters(char[] ch,
                       int off,
                       int len)
                throws org.xml.sax.SAXException
Specified by:
characters in interface org.xml.sax.DocumentHandler
Throws:
org.xml.sax.SAXException

ignorableWhitespace

public void ignorableWhitespace(char[] ch,
                                int off,
                                int len)
                         throws org.xml.sax.SAXException
Specified by:
ignorableWhitespace in interface org.xml.sax.DocumentHandler
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

startElement

public void startElement(java.lang.String name,
                         org.xml.sax.AttributeList atts)
                  throws org.xml.sax.SAXException
Specified by:
startElement in interface org.xml.sax.DocumentHandler
Throws:
org.xml.sax.SAXException

endElement

public void endElement(java.lang.String name)
                throws org.xml.sax.SAXException
Specified by:
endElement in interface org.xml.sax.DocumentHandler
Throws:
org.xml.sax.SAXException

comment

public void comment(java.lang.String str)
             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

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.DocumentHandler
Throws:
org.xml.sax.SAXException

endDocument

public void endDocument()
                 throws org.xml.sax.SAXException
Specified by:
endDocument in interface org.xml.sax.DocumentHandler
Throws:
org.xml.sax.SAXException

setDocumentLocator

public void setDocumentLocator(org.xml.sax.Locator loc)
Specified by:
setDocumentLocator in interface org.xml.sax.DocumentHandler