1 2 3 4 5 6 7 8 9 10 11 12 13
|
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); }
}
|