ecologylab.appframework
Interface StatusReporter


public interface StatusReporter

Interface for objects that report status to the user.

Author:
andruid

Method Summary
 void display(java.lang.String msg)
          Submit a message for display in the status line.
 void display(java.lang.String msg, int priority)
          Submit a message for display in the status line.
 void display(java.lang.String msg, int longevity, int progessNumerator, int progessDenominator)
           
 

Method Detail

display

void display(java.lang.String msg)
Submit a message for display in the status line. If there's nothing showing now, it will be displayed immediately. Otherwise, it will be queued. Uses the default minimum longevity level of 1 * 1/4 second.


display

void display(java.lang.String msg,
             int priority)
Submit a message for display in the status line. If there's nothing showing now, it will be displayed immediately. Otherwise, it will be queued.

Parameters:
msg - String to display.
priority - Measure minimum message longevity of message in units of 1/4 second.

display

void display(java.lang.String msg,
             int longevity,
             int progessNumerator,
             int progessDenominator)