(int width, int height)
| 55 | } |
| 56 | |
| 57 | @Override |
| 58 | public Window setContentSize(int width, int height) { |
| 59 | assert _onUIThread() : "Should be run on UI thread"; |
| 60 | _nSetContentSize(width, height); |
| 61 | return this; |
| 62 | } |
| 63 | |
| 64 | @Override |
| 65 | public Window setTitle(String title) { |
nothing calls this directly
no test coverage detected