*/
public DOMParser() {
// REVISIT: should we use a new configuration with scannerNS->dom API with
// no dtd scanners/valitors..?
//
super(new NonValidatingConfiguration());
try {
// use our own document implementation
setProperty(DOCUMENT_CLASS, "org.apache.xerces.impl.xs.dom.DocumentImpl");
// don't defer DOM expansion
setFeature(DEFER_EXPANSION, false);