package jalview.gui; public interface IProgressIndicatorHandler { /** * * @return true if a cancel button can be shown */ public boolean canCancel(); /** * Callback to cancel activity if the cancel button is pressed. * @param id * @return true if activity was cancelled */ public boolean cancelActivity(long id); }