--- isorelax-20041111.orig/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java
+++ isorelax-20041111/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java
@@ -101,4 +101,8 @@
{ _WrappedFactory.setIgnoringElementContentWhitespace(whitespace); }
public void setNamespaceAware(boolean awareness)
{ _WrappedFactory.setNamespaceAware(awareness); }
+ public boolean getFeature(String name) throws ParserConfigurationException
+ { return _WrappedFactory.getFeature(name); }
+ public void setFeature(String name, boolean value) throws ParserConfigurationException
+ { _WrappedFactory.setFeature(name, value); }
}