Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

oracle.ide.controls
Interface StatusBar

All Known Implementing Classes:
StatusBarControl

public interface StatusBar

StatusBar interface of the Ide. The StatusBar provides a 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 );


Method Summary
 javax.swing.JComponent getGUI()
          Gets the Component
 ProgressTracker getProgressTracker()
          Return the ProgressTracker that 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
 

Method Detail

getText

java.lang.String getText()
Gets the text of the StatusBar

Returns:
The text

setText

void setText(java.lang.String text)
Sets the text of the StatusBar

Parameters:
text - The Text to set

getGUI

javax.swing.JComponent getGUI()
Gets the Component


getToolbar

Toolbar getToolbar()
Return the status bar toolbar. Initially, this toolbar is empty. Client should add their tools to the toolbar.


getProgressTracker

ProgressTracker getProgressTracker()
Return the ProgressTracker that can be displayed in the toolbar to show progress of background tasks.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Copyright © 1997, 2011, Oracle. All rights reserved.