Return the current value of the specified property for the underlying XMLReader implementation. See http://www.saxproject.org/apidoc/xml/sax/package-summary.html#package-description for info
(String property)
| 810 | * @exception SAXNotSupportedException if the property name is recognized but not supported |
| 811 | */ |
| 812 | public Object getProperty(String property) throws SAXNotRecognizedException, SAXNotSupportedException { |
| 813 | |
| 814 | return getParser().getProperty(property); |
| 815 | } |
| 816 | |
| 817 | |
| 818 | /** |
nothing calls this directly
no test coverage detected