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

Packages that use CStation
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.common.intern.station Contains the CommonStation, various implementations of CommonStation and supporting classes. 
bibliothek.gui.dock.common.mode A subclass of LocationModeManager that handles CLocations, ExtendedModes and is aware of CControl
bibliothek.gui.dock.common.mode.station Contains wrapper classes for various DockStations, implementing the interface CLocationMode
 

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<?> CControl.getStation(String id)
          Searches the CStation with unique identifier id.
 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<S extends DockStation>
          A simple implementation of CStation.
 class AbstractDockableCStation<S extends DockStation>
          An abstract implementation of CStation that can be docked like a CDockable.
 

Methods in bibliothek.gui.dock.common.intern that return CStation
 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 CDockable, 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 CDockable.
 

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

Methods in bibliothek.gui.dock.common.intern.station that return CStation
 CStation<?> CSplitDockStation.getStation()
           
 CStation<?> CommonStationDelegate.getStation()
          Gets a result for CommonDockable.getStation().
 CStation<?> SecureCSplitDockStation.getStation()
           
 

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

Methods in bibliothek.gui.dock.common.mode that return CStation
protected  CStation<?> CLocationModeManager.getAreaOf(Dockable dockable)
          Searches dockable and its parent for the first CStation that is a working area.
 

Uses of CStation in bibliothek.gui.dock.common.mode.station
 

Constructors in bibliothek.gui.dock.common.mode.station with parameters of type CStation
CFlapDockStationHandle(CStation<FlapDockStation> station)
          Creates a new handle
CScreenDockStationHandle(CStation<ScreenDockStation> station, CLocationModeManager manager)
          Creates a new handle
CSplitDockStationHandle(CStation<SplitDockStation> station, CLocationModeManager manager)
          Creates a new handle.