()
| 299 | */ |
| 300 | @Input({alias: 'cdkListboxMultiple', transform: booleanAttribute}) |
| 301 | get multiple(): boolean { |
| 302 | return this.selectionModel.multiple; |
| 303 | } |
| 304 | set multiple(value: boolean) { |
| 305 | this.selectionModel.multiple = value; |
| 306 |
nothing calls this directly
no test coverage detected