diff --git a/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java b/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java
index 7fb995a..e48f660 100644
--- a/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java
+++ b/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java
@@ -101,4 +101,8 @@ public class ValidatingDocumentBuilderFactory extends DocumentBuilderFactory
     { _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); }
 }
