return new GenericDocument(null, GenericDOMImplementation.getDOMImplementation());
}
protected Document newSVGDoc() {
Document doc = new SVGOMDocument(null, SVGDOMImplementation.getDOMImplementation());
doc.appendChild(doc.createElementNS(SVG_NAMESPACE_URI, "svg"));
return doc;
}
}