(self)
| 2465 | self.readonly = True |
| 2466 | |
| 2467 | def get_labels(self): |
| 2468 | res = [] |
| 2469 | if self.value: |
| 2470 | res.append(Label({"__text": self.value})) |
| 2471 | res.extend(ScalarControl.get_labels(self)) |
| 2472 | return res |
| 2473 | |
| 2474 | def is_of_kind(self, kind): return kind == "clickable" |
| 2475 |
nothing calls this directly
no test coverage detected