Looks up and returns the value of a SAX2 property.
(self, name)
| 81 | raise SAXNotRecognizedException("Feature '%s' not recognized" % name) |
| 82 | |
| 83 | def getProperty(self, name): |
| 84 | "Looks up and returns the value of a SAX2 property." |
| 85 | raise SAXNotRecognizedException("Property '%s' not recognized" % name) |
| 86 | |
| 87 | def setProperty(self, name, value): |
| 88 | "Sets the value of a SAX2 property." |
nothing calls this directly
no test coverage detected