Uses of Interface
bibliothek.gui.dock.common.CStation

Packages that use CStation
bibliothek.gui.dock.common   
bibliothek.gui.dock.common.intern   
 

Uses of CStation in bibliothek.gui.dock.common
 

Classes in bibliothek.gui.dock.common that implement CStation
 class CGridArea
          In a CGridArea normalized CDockable can be shown.
 class CMinimizeArea
          An area where CDockables can be stored in their minimized state.
 class CWorkingArea
          A working area is an element which is always visible and contains some CDockables which can't be dragged out of it.
 

Methods in bibliothek.gui.dock.common that return CStation
 CStation CControl.getStation(DockStation intern)
          Searches the CStation whose internal representation is intern.
 CStation[] CContentArea.getStations()
          Gets an independant array of all stations that are used on this CContentArea.
 

Methods in bibliothek.gui.dock.common that return types with arguments of type CStation
 List<CStation> CControl.getStations()
          Gets an unmodifiable list of all stations that are currently registered at this control.
 List<CStation> CControlRegister.getStations()
          Gets an unmodifiable list of all CStations which are known to this register.
 

Methods in bibliothek.gui.dock.common with parameters of type CStation
 void CControl.add(CStation station, boolean root)
          Adds an additional station to this control.
 void CControl.remove(CStation station)
          Removes a CStation from this control.
 

Uses of CStation in bibliothek.gui.dock.common.intern
 

Classes in bibliothek.gui.dock.common.intern that implement CStation
 class AbstractCStation
          A simple implementation of CStation.
 

Methods in bibliothek.gui.dock.common.intern that return CStation
protected  CStation CStateManager.getAreaOf(Dockable dockable)
          Searches dockable and its parent for the first CStation that is a working area.
 CStation CommonDockable.getStation()
          Gets the model of this dockable as station.
 CStation DefaultCommonDockable.getStation()
           
 CStation AbstractCDockable.getWorkingArea()
           
 CStation CDockable.getWorkingArea()
          Gets the parent of this dockable, this should be the same as set by the last call of CDockable.setWorkingArea(CStation).
 

Methods in bibliothek.gui.dock.common.intern that return types with arguments of type CStation
 List<CStation> DefaultCControlRegister.getStations()
           
 

Methods in bibliothek.gui.dock.common.intern with parameters of type CStation
 void DefaultCControlRegister.addStation(CStation station)
           
 void MutableCControlRegister.addStation(CStation station)
          Adds station to this register.
 boolean DefaultCControlRegister.removeStation(CStation station)
           
 boolean MutableCControlRegister.removeStation(CStation station)
          Removes station from this register.
 void AbstractCDockable.setWorkingArea(CStation area)
           
 void CDockable.setWorkingArea(CStation area)
          Sets the parent of this dockable.