()
| 204 | } |
| 205 | |
| 206 | @Override |
| 207 | public void close() { |
| 208 | assert _onUIThread() : "Should be run on UI thread"; |
| 209 | assert !isClosed() : "Window is already closed"; |
| 210 | _nClose(); |
| 211 | super.close(); |
| 212 | } |
| 213 | |
| 214 | public Window winSetParent(long hwnd) { |
| 215 | assert _onUIThread() : "Should be run on UI thread"; |
nothing calls this directly
no test coverage detected