Extension SDK 10.1.2

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
 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

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

Returns:
The text

setText

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

Parameters:
text - The Text to set

getGUI

public javax.swing.JComponent getGUI()
Gets the Component


getToolbar

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


Extension SDK

 

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