(self, handle, unit, label, mainInput, selectorLabel=None, hidden=False)
| 55 | class XDef: |
| 56 | |
| 57 | def __init__(self, handle, unit, label, mainInput, selectorLabel=None, hidden=False): |
| 58 | self.handle = handle |
| 59 | self.unit = unit |
| 60 | self.label = label |
| 61 | self.mainInput = mainInput |
| 62 | self._selectorLabel = selectorLabel |
| 63 | self.hidden = hidden |
| 64 | |
| 65 | @property |
| 66 | def selectorLabel(self): |
nothing calls this directly
no outgoing calls
no test coverage detected