- Fix spacing in summary bar

- Add start() in UpdateTask so things happen in the right order
- Add toString() in UpdateTask for better debugging
- Fix getID() for plugin UpdateTasks
This commit is contained in:
zzz
2012-10-22 20:25:01 +00:00
parent 1538e6ec4e
commit bd9ad9982b
12 changed files with 35 additions and 13 deletions

View File

@ -9,6 +9,11 @@ import java.net.URI;
*/
public interface UpdateTask {
/**
* Tasks must not start themselves in the constructor. Do it here.
*/
public void start();
public void shutdown();
public boolean isRunning();