Package ubic.basecode.util
Interface StatusViewer
- All Known Implementing Classes:
StatusDebugLogger
,StatusStderr
public interface StatusViewer
Intended use is to display 'status' information or other messages to users in a non-disruptive fashion (though the
actual use is up to the implementer). Copyright (c) 2004 University of British Columbia
- Author:
- Paul Pavlidis
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clear the status display.void
Print an error status messge.void
void
void
showProgress
(String message) void
showStatus
(String s) Print the status to the location appropriate for this application.void
showStatus
(String s, boolean callSuper) void
-
Method Details
-
clear
void clear()Clear the status display. Implementers that do not write to GUI elements probably don't need to do anything. -
showError
Print an error status messge.- Parameters:
s
-
-
showError
- Parameters:
e
-
-
showError
- Parameters:
e
-
-
showProgress
-
showStatus
Print the status to the location appropriate for this application.- Parameters:
s
-
-
showStatus
- Parameters:
s
-callSuper
- set to false to suppress calling super.showStatus() (default is true)
-
showWarning
- Parameters:
s
-
-