com.togethersoft.openapi.ide.util
Interface StatusService

All Known Implementing Classes:
StatusBarUI

public interface StatusService

Interface StatusService represents a service that produces text output to the status bar.

Author:
TogetherSoft

Method Summary
 voidsetText(String text)
           Assigns specified text to de displayed in the status bar.
 voidsetText(String text, int messageType)
           Sets specified text that represents a message if the given type, to be displayed in the status bar.

Method Detail

setText

public void setText(String text)
Assigns specified text to de displayed in the status bar. Clears the status bar if the parameter is null.
Parameters:
text - String text to be displayed. If null, the status bar is cleared.

setText

public void setText(String text, int messageType)
Sets specified text that represents a message if the given type, to be displayed in the status bar.
Parameters:
text - String text to be displayed. If null, the status bar is cleared.
messageType - int type of the message
See Also:
com.togethersoft.openapi.ide.message.IdeMessageType;