public interface StatusBar
Toolbar
 where clients can add their own actions. This is generally done as follows:
    final IdeAction a = IdeAction.get( MY_CMD_ID, ... );
    a.setController( myController );
    Ide.getMainWindow().getStatusBar().getToolbar().add( a );| Modifier and Type | Method and Description | 
|---|---|
| javax.swing.JComponent | getGUI()Gets the Component | 
| ProgressTracker | getProgressTracker()Return the  ProgressTrackerthat can be displayed in the toolbar to 
 show progress of background tasks. | 
| java.lang.String | getText()Gets the text of the StatusBar | 
| Toolbar | getToolbar()Return the status bar toolbar. | 
| void | setText(java.lang.String text)Sets the text of the StatusBar | 
java.lang.String getText()
void setText(java.lang.String text)
text - The Text to setjavax.swing.JComponent getGUI()
Toolbar getToolbar()
ProgressTracker getProgressTracker()
ProgressTracker that can be displayed in the toolbar to 
 show progress of background tasks.