Set the typed value of an input by its name, creating a child element to hold the input if needed.
(self, name, value, typeString = '')
| 89 | # |
| 90 | |
| 91 | def _setInputValue(self, name, value, typeString = ''): |
| 92 | """Set the typed value of an input by its name, creating a child element |
| 93 | to hold the input if needed.""" |
| 94 | method = getattr(self.__class__, "_setInputValue" + getTypeString(value)) |
| 95 | return method(self, name, value, typeString) |
| 96 | |
| 97 | def _getInputValue(self, name, target = ''): |
| 98 | """Return the typed value of an input by its name, taking both the |
nothing calls this directly
no test coverage detected