File: build

package info (click to toggle)
isorelax 20041111-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: java: 3,061; makefile: 14; xml: 11
file content (13 lines) | stat: -rw-r--r-- 848 bytes parent folder | download | duplicates (3)
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); }
 }