(File icon)
| 103 | } |
| 104 | |
| 105 | @Override |
| 106 | public Window setIcon(File icon) { |
| 107 | assert _onUIThread() : "Should be run on UI thread"; |
| 108 | _nSetIcon(icon.getAbsolutePath().toString()); |
| 109 | return this; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * <p>Shortcut for {@link #setTitleVisible(boolean)}, {@link #setFullSizeContentView(boolean)}</p> |
nothing calls this directly
no test coverage detected