(self)
| 87 | return self._validator.validate(self.GetValue()) |
| 88 | |
| 89 | def getInvalidationReason(self): |
| 90 | if self._validator is None: |
| 91 | return None |
| 92 | return self._validator.getReason(self.GetValue()) |
| 93 | |
| 94 | def OnText(self, event): |
| 95 | currentValue = self.GetValue() |
no test coverage detected