isorelax (20041111-6) direct (non packaging) changes

Summary

 org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java |    4 ++++
 1 file changed, 4 insertions(+)

    
download this patch

Patch contents

--- 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); }
 }