(self, row, col, state=_ANY)
| 569 | |
| 570 | @preconditions(_validate_row, _validate_col, _validate_state) |
| 571 | def cell(self, row, col, state=_ANY): |
| 572 | return DataTableCellFacade(self.id, self.mixin, row, col, state) |
| 573 | |
| 574 | @preconditions(_validate_col, _validate_state) |
| 575 | def column(self, col, state=_ANY): |
no test coverage detected