*/
public FormatterToXML(java.io.OutputStream os)
throws UnsupportedEncodingException , SAXException
{
super(new org.apache.xerces.parsers.SAXParser());
m_serializer = new SerializerToXML();
//super( format != null ? format : new OutputFormat( Method.XML, null, false ) );
//_format.setMethod( Method.XML );
m_serializer.setOutputStream( os );
this.setContentHandler(m_serializer);
}