Sets a flag indicating whether the requested feature is supported by the underlying implementation of org.xml.sax.XMLReader . See http://www.saxproject.org/apidoc/xml/sax/package-summary.html#pac
(String feature, boolean value)
| 664 | * @exception SAXNotSupportedException if the property name is recognized but not supported |
| 665 | */ |
| 666 | public void setFeature(String feature, boolean value) |
| 667 | throws ParserConfigurationException, SAXNotRecognizedException, SAXNotSupportedException { |
| 668 | |
| 669 | getFactory().setFeature(feature, value); |
| 670 | |
| 671 | } |
| 672 | |
| 673 | |
| 674 | /** |