Use LinarProgessIndicator instead of sub-view

This commit is contained in:
Manuel Fuhr 2022-04-02 17:34:41 +02:00
parent 3a2c109ded
commit 952ea803b2
8 changed files with 173 additions and 162 deletions

View file

@ -1,8 +1,9 @@
package btools.util;
public interface ProgressListener
{
public void updateProgress( String progress );
public void updateProgress(String task, int progress);
public boolean isCanceled();
}