(String title)
| 62 | } |
| 63 | |
| 64 | @Override |
| 65 | public Window setTitle(String title) { |
| 66 | assert _onUIThread() : "Should be run on UI thread"; |
| 67 | try { |
| 68 | _nSetTitle(title.getBytes("UTF-8")); |
| 69 | } catch (UnsupportedEncodingException ignored) {} |
| 70 | return this; |
| 71 | } |
| 72 | |
| 73 | @Override |
| 74 | public Window setIcon(File icon) { |
nothing calls this directly
no test coverage detected