JIDE 3.5.15

com.jidesoft.action
Interface Dockable

All Known Implementing Classes:
CommandBar, CommandMenuBar, DockableBar

public interface Dockable

An interface to indicate the component can be docked to a DockableBarHolder. Common thing about all DockableBar components is that they are all have a DockableBarManager and they all have a dock ID.


Method Summary
 DockableBarManager getDockableBarManager()
          Gets the DockableBarManager.
 int getDockID()
          Gets dock id.
 void resetDockID()
          Resets dock id.
 void setDockableBarManager(DockableBarManager dockingManager)
          Sets the DockableBarManager.
 void setDockID(int id)
          Sets dock id.
 

Method Detail

getDockableBarManager

DockableBarManager getDockableBarManager()
Gets the DockableBarManager.

Returns:
the DockableBarManager that manages this Dockable.

setDockableBarManager

void setDockableBarManager(DockableBarManager dockingManager)
Sets the DockableBarManager.

Parameters:
dockingManager - new DockableBarManager

getDockID

int getDockID()
Gets dock id.

Returns:
the an int id that unique identify the component.

setDockID

void setDockID(int id)
Sets dock id.

Parameters:
id - new id

resetDockID

void resetDockID()
Resets dock id. It basically get a new id and discard the old one.


JIDE 3.5.15