Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 97722 | Differences between
and this patch

Collapse All | Expand All

(-)orig/org/iso_relax/jaxp/ValidatingDocumentBuilderFactory.java (+16 lines)
Lines 76-81 Link Here
76
        return _WrappedFactory.getAttribute(name);
76
        return _WrappedFactory.getAttribute(name);
77
    }
77
    }
78
78
79
    /**
80
     * @see DocumentBuilderFactory#setFeature(String, boolean)
81
     */
82
    public void setFeature(String name, boolean value) throws ParserConfigurationException
83
    {
84
        _WrappedFactory.setFeature(name, value);
85
    }
86
87
    /**
88
     * @see DocumentBuilderFactory#getFeature(String)
89
     */
90
    public boolean getFeature(String name) throws ParserConfigurationException
91
    {
92
        return _WrappedFactory.getFeature(name);
93
    }
94
79
    public boolean isValidating()
95
    public boolean isValidating()
80
    { return validation; }
96
    { return validation; }
81
    public void setValidating(boolean _validating)
97
    public void setValidating(boolean _validating)

Return to bug 97722