/* */
/* 283 */ if (this.domDocumentClass != null) {
/* */ try {
/* 285 */ result = (org.w3c.dom.Document)this.domDocumentClass.newInstance();
/* */ } catch (Exception e) {
/* 287 */ throw new DocumentException("Could not instantiate an instance of DOM Document with class: " + this.domDocumentClass.getName(), e);
/* */ }
/* */
/* */ }
/* */ else
/* */ {
/* 294 */ result = createDomDocumentViaJAXP();
/* */
/* 296 */ if (result == null) {
/* 297 */ Class theClass = getDomDocumentClass();
/* */ try
/* */ {
/* 300 */ result = (org.w3c.dom.Document)theClass.newInstance();
/* */ } catch (Exception e) {
/* 302 */ throw new DocumentException("Could not instantiate an instance of DOM Document with class: " + theClass.getName(), e);
/* */ }
/* */
/* */ }
/* */
/* */ }