wt.clients.widgets
Class StatusMessage

java.lang.Object
  extended bywt.clients.widgets.StatusMessage

public class StatusMessage
extends Object

This class represents the status message object. Each status message will contain the originator, the status bar text, and the status bar panel.


Field Summary
private static String CLASSNAME
           
private  Object originator
           
private static String RESOURCE
           
private  int statusBarPanel
           
private  String statusBarText
           
private static String versionID
           
 
Constructor Summary
StatusMessage(Object originator)
           
StatusMessage(Object originator, String statusBarText)
           
StatusMessage(Object originator, String statusBarText, int statusBarPanel)
           
 
Method Summary
 Object getOriginator()
          Gets the value of the attribute: originator; The object that fires up the status bar message.
 int getStatusBarPanel()
          Gets the value of the attribute: statusBarPanel; The status bar panel which the message will be displayed.
 String getStatusBarText()
          Gets the value of the attribute: statusBarText; The text that the status bar panel will display.
 void setOriginator(Object a_Originator)
          Sets the value of the attribute: originator; The object that fires up the status bar message.
 void setStatusBarPanel(int a_StatusBarPanel)
          Sets the value of the attribute: statusBarPanel; The status bar panel which the message will be displayed.
 void setStatusBarText(String a_StatusBarText)
          Sets the value of the attribute: statusBarText; The text that the status bar panel will display.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

versionID

private static final String versionID
See Also:
Constant Field Values

originator

private Object originator

statusBarText

private String statusBarText

statusBarPanel

private int statusBarPanel
Constructor Detail

StatusMessage

public StatusMessage(Object originator)
Parameters:
originator -

StatusMessage

public StatusMessage(Object originator,
                     String statusBarText)
Parameters:
originator -
statusBarText -

StatusMessage

public StatusMessage(Object originator,
                     String statusBarText,
                     int statusBarPanel)
Parameters:
originator -
statusBarText -
statusBarPanel -
Method Detail

getOriginator

public Object getOriginator()
Gets the value of the attribute: originator; The object that fires up the status bar message.

Returns:
Object

setOriginator

public void setOriginator(Object a_Originator)
Sets the value of the attribute: originator; The object that fires up the status bar message.

Parameters:
a_Originator -

getStatusBarText

public String getStatusBarText()
Gets the value of the attribute: statusBarText; The text that the status bar panel will display.

Returns:
String

setStatusBarText

public void setStatusBarText(String a_StatusBarText)
Sets the value of the attribute: statusBarText; The text that the status bar panel will display.

Parameters:
a_StatusBarText -

getStatusBarPanel

public int getStatusBarPanel()
Gets the value of the attribute: statusBarPanel; The status bar panel which the message will be displayed.

Returns:
int

setStatusBarPanel

public void setStatusBarPanel(int a_StatusBarPanel)
Sets the value of the attribute: statusBarPanel; The status bar panel which the message will be displayed.

Parameters:
a_StatusBarPanel -