This class doesn't depend on SAXBuilder, so it can be used in any other place, e.g., javax.xml.transform.sax.SAXResult. @author tomyeh @see SAXBuilder
180181182183184185186187188
* @param source the source * @return the transformed result in an iDOM document */ public final Document transform(Source source) throws TransformerException { final SAXHandler hdl = new SAXHandler(); _tfmr.transform(source, new SAXResult(hdl)); return hdl.getDocument(); }