JIDE 3.5.15

com.jidesoft.docking
Interface Dockable

All Known Implementing Classes:
ContainerContainer

public interface Dockable

An interface to indicate the component can be docked to a DockableHolder. Common things about all Dockable components is they are all have a DockingManager and they all have an ID.


Method Summary
 int getDockID()
          Gets dock id.
 DockingManager getDockingManager()
          Gets the docking manager.
 void resetDockID()
          Resets dock id.
 void setDockID(int id)
          Sets dock id.
 void setDockingManager(DockingManager dockingManager)
          Sets the docking Manager.
 

Method Detail

getDockingManager

DockingManager getDockingManager()
Gets the docking manager.

Returns:
the Docking Manager that manages this Dockable.

setDockingManager

void setDockingManager(DockingManager dockingManager)
Sets the docking Manager.

Parameters:
dockingManager - new docking manager

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