()
| 133 | } |
| 134 | |
| 135 | public Window maximize() { |
| 136 | assert _onUIThread() : "Should be run on UI thread"; |
| 137 | _nMaximize(); |
| 138 | return this; |
| 139 | } |
| 140 | |
| 141 | public Window minimize() { |
| 142 | assert _onUIThread() : "Should be run on UI thread"; |
nothing calls this directly
no test coverage detected