(boolean value)
| 160 | public native void _nSetMouseCursor(int cursorIdx); |
| 161 | |
| 162 | @Override |
| 163 | public Window hideMouseCursorUntilMoved(boolean value) { |
| 164 | assert _onUIThread() : "Should be run on UI thread"; |
| 165 | _nHideMouseCursorUntilMoved(value); |
| 166 | return this; |
| 167 | } |
| 168 | |
| 169 | @Override |
| 170 | public Window lockMouseCursor(boolean value) { |
nothing calls this directly
no test coverage detected