Set the typed value of a property by its name, creating a child element to hold the property if needed.
(self, name, value, typeString = '')
| 205 | # |
| 206 | |
| 207 | def _setPropertyValue(self, name, value, typeString = ''): |
| 208 | """Set the typed value of a property by its name, creating a child element |
| 209 | to hold the property if needed.""" |
| 210 | method = getattr(self.__class__, "_setPropertyValue" + getTypeString(value)) |
| 211 | return method(self, name, value, typeString) |
| 212 | |
| 213 | def _getPropertyValue(self, name, target = ''): |
| 214 | """Return the typed value of a property by its name. If the given property |
nothing calls this directly
no test coverage detected