*/
public FormatterToHTML(java.io.OutputStream os)
throws UnsupportedEncodingException, SAXException
{
super(new org.apache.xerces.parsers.SAXParser());
m_serializer = new SerializerToHTML();
m_serializer.setOutputStream(os);
this.setContentHandler(m_serializer);
}