edu.sdsc.mbt.util
Class StatusEvent

java.lang.Object
  extended byedu.sdsc.mbt.util.StatusEvent

public class StatusEvent
extends java.lang.Object

A status message container used by the Status class.

Author:
John L. Moreland
See Also:
Status,


Field Summary
 int level
          The message level.
 java.lang.String message
          The message text.
 float percent
          The progress percentage (0.0-1.0).
 int type
          The message type.
static int TYPE_OUTPUT
          An output message type of event.
static int TYPE_PROGRESS
          A progress type of event.
 
Constructor Summary
StatusEvent()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TYPE_OUTPUT

public static final int TYPE_OUTPUT
An output message type of event.

See Also:
Constant Field Values

TYPE_PROGRESS

public static final int TYPE_PROGRESS
A progress type of event.

See Also:
Constant Field Values

type

public int type
The message type.


level

public int level
The message level.


message

public java.lang.String message
The message text.


percent

public float percent
The progress percentage (0.0-1.0).

Constructor Detail

StatusEvent

public StatusEvent()