(float progress)
| 281 | } |
| 282 | |
| 283 | @Override |
| 284 | public Window setProgressBar(float progress) { |
| 285 | assert _onUIThread() : "Should be run on UI thread"; |
| 286 | _nSetProgressBar(progress); |
| 287 | _lastProgressBarValue = progress; |
| 288 | return this; |
| 289 | } |
| 290 | |
| 291 | @Override |
| 292 | public void close() { |
nothing calls this directly
no test coverage detected