X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FIProgressIndicator.java;h=c250aca63e341febe8fe6ae1c6f4caec164bf5e4;hb=0751c58086542f9e0466201b624f84d1efd547bb;hp=7d54ca550f5aac6ddff7abfb1a2d0ce3267462a1;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/src/jalview/gui/IProgressIndicator.java b/src/jalview/gui/IProgressIndicator.java index 7d54ca5..c250aca 100644 --- a/src/jalview/gui/IProgressIndicator.java +++ b/src/jalview/gui/IProgressIndicator.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -34,7 +34,8 @@ public interface IProgressIndicator * is removed with a second call with same ID. * * @param message - * - displayed message for operation + * - displayed message for operation. Please ensure message is + * internationalised. * @param id * - unique handle for this indicator */ @@ -55,4 +56,11 @@ public interface IProgressIndicator */ boolean operationInProgress(); + /** + * Remove progress bar with a given id from the panel. + * + * @param id + */ + void removeProgressBar(long id); + }