(String feature, boolean value)
| 1395 | } |
| 1396 | |
| 1397 | public void setFeature(String feature, boolean value) |
| 1398 | throws XmlPullParserException { |
| 1399 | if (XmlPullParser.FEATURE_PROCESS_NAMESPACES.equals(feature)) |
| 1400 | processNsp = value; |
| 1401 | else if (isProp(feature, false, "relaxed")) |
| 1402 | relaxed = value; |
| 1403 | else |
| 1404 | exception("unsupported feature: " + feature); |
| 1405 | } |
| 1406 | |
| 1407 | public void setProperty(String property, Object value) |
| 1408 | throws XmlPullParserException { |
no test coverage detected