wt.clients.widgets
Interface StatusBarHostInterface

All Known Implementing Classes:
BaseManager, StatusBar

public interface StatusBarHostInterface

Defined the methods which status bar will be implemented. "Push" method will push the StatusMessage to the stack inside the status bar. "Pop" method will pop the StatusMessage from the stack inside the status bar. "Clear" will clear the StatusMessage from the stack inside the status bar. The integer parameter will specify which status bar panel inside the status bar will take the action.


Method Summary
 void clear(int statusBarPanel, StatusMessage message)
          "Clear" will clear the StatusMessage from the stack inside the status bar.
 void pop(int statusBarPanel, StatusMessage message)
          "Pop" method will pop the StatusMessage from the stack inside the status bar.
 void push(int statusBarPanel, StatusMessage message)
          "Push" method will push the StatusMessage to the stack inside the status bar.
 

Method Detail

push

public void push(int statusBarPanel,
                 StatusMessage message)
"Push" method will push the StatusMessage to the stack inside the status bar. The integer parameter will specify which status bar panel inside the status bar will take the action.

Parameters:
statusBarPanel - Indicate which status bar panel inside the status bar will take the action.
message - Message to be displayed on the status bar.

pop

public void pop(int statusBarPanel,
                StatusMessage message)
"Pop" method will pop the StatusMessage from the stack inside the status bar. The integer parameter will specify which status bar panel inside the status bar will take the action.

Parameters:
statusBarPanel - Indicate which status bar panel inside the status bar will take the action.
message - Message to be displayed on the status bar.

clear

public void clear(int statusBarPanel,
                  StatusMessage message)
"Clear" will clear the StatusMessage from the stack inside the status bar. The integer parameter will specify which status bar panel inside the status bar will take the action.

Parameters:
statusBarPanel - Indicate which status bar panel inside the status bar will take the action.
message - Message to be displayed on the status bar.