Package ubic.basecode.util
Class StatusDebugLogger
- java.lang.Object
-
- ubic.basecode.util.StatusDebugLogger
-
- All Implemented Interfaces:
StatusViewer
public class StatusDebugLogger extends Object implements StatusViewer
- Author:
- Paul Pavlidis
-
-
Constructor Summary
Constructors Constructor Description StatusDebugLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
Clear the status display.void
showError(String s)
Print an error status messge.void
showError(String message, Throwable e)
void
showError(Throwable e)
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
showWarning(String s)
-
-
-
Method Detail
-
clear
public void clear()
Description copied from interface:StatusViewer
Clear the status display. Implementers that do not write to GUI elements probably don't need to do anything.- Specified by:
clear
in interfaceStatusViewer
-
showError
public void showError(String s)
Description copied from interface:StatusViewer
Print an error status messge.- Specified by:
showError
in interfaceStatusViewer
-
showError
public void showError(String message, Throwable e)
- Specified by:
showError
in interfaceStatusViewer
-
showError
public void showError(Throwable e)
- Specified by:
showError
in interfaceStatusViewer
-
showProgress
public void showProgress(String message)
- Specified by:
showProgress
in interfaceStatusViewer
-
showStatus
public void showStatus(String s)
Description copied from interface:StatusViewer
Print the status to the location appropriate for this application.- Specified by:
showStatus
in interfaceStatusViewer
-
showStatus
public void showStatus(String s, boolean callSuper)
- Specified by:
showStatus
in interfaceStatusViewer
callSuper
- set to false to suppress calling super.showStatus() (default is true)
-
showWarning
public void showWarning(String s)
- Specified by:
showWarning
in interfaceStatusViewer
-
-