Class StatusStderr

java.lang.Object
ubic.basecode.util.StatusStderr
All Implemented Interfaces:
StatusViewer

public class StatusStderr extends Object implements StatusViewer
Prints status info to stderr
Author:
Paul Pavlidis
  • Constructor Details

    • StatusStderr

      public StatusStderr()
  • Method Details

    • 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 interface StatusViewer
    • showError

      public void showError(String s)
      Description copied from interface: StatusViewer
      Print an error status messge.
      Specified by:
      showError in interface StatusViewer
      Parameters:
      s -
    • showError

      public void showError(String message, Throwable e)
      Specified by:
      showError in interface StatusViewer
      Parameters:
      e -
    • showError

      public void showError(Throwable e)
      Specified by:
      showError in interface StatusViewer
      Parameters:
      e -
    • showProgress

      public void showProgress(String message)
      Specified by:
      showProgress in interface StatusViewer
    • 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 interface StatusViewer
      Parameters:
      s -
    • showStatus

      public void showStatus(String s, boolean callSuper)
      Specified by:
      showStatus in interface StatusViewer
      Parameters:
      s -
      callSuper - set to false to suppress calling super.showStatus() (default is true)
    • showWarning

      public void showWarning(String s)
      Specified by:
      showWarning in interface StatusViewer
      Parameters:
      s -