Uses of Class
bibliothek.gui.dock.common.CContentArea

Packages that use CContentArea
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.location Various implementations of CLocation
 

Uses of CContentArea in bibliothek.gui.dock.common
 

Methods in bibliothek.gui.dock.common that return CContentArea
 CContentArea CControl.createContentArea(java.lang.String uniqueId)
          Creates and adds a new CContentArea.
 CContentArea CControl.getContentArea()
          Gets the element that should be in the center of the mainframe.
 

Methods in bibliothek.gui.dock.common that return types with arguments of type CContentArea
 java.util.List<CContentArea> CControl.getContentAreas()
          Gets an unmodifiable list of all CContentAreas registered at this control
 

Methods in bibliothek.gui.dock.common with parameters of type CContentArea
 void CControl.addContentArea(CContentArea content)
          Deprecated. this method has not the same behavior as CControl.createContentArea(String), this method will either be removed in future releases or change its behavior
static CBaseLocation CLocation.base(CContentArea center)
          Creates a new location that tells all children to use a station defined on center.
static CMaximizedLocation CLocation.maximized(CContentArea area)
          Creates a location representing the maximized mode on area.
 void CControl.removeContentArea(CContentArea content)
          Removes content from the list of known contentareas.
 

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

Methods in bibliothek.gui.dock.common.intern that return CContentArea
 CContentArea DefaultCControlRegister.getDefaultContentArea()
           
 CContentArea MutableCControlRegister.getDefaultContentArea()
          Gets the default content area.
 

Methods in bibliothek.gui.dock.common.intern that return types with arguments of type CContentArea
 java.util.List<CContentArea> DefaultCControlRegister.getContentAreas()
           
 java.util.List<CContentArea> MutableCControlRegister.getContentAreas()
          Gets an unmodifiable list of all CContentAreas known to this register.
 

Methods in bibliothek.gui.dock.common.intern with parameters of type CContentArea
 void DefaultCControlRegister.addContentArea(CContentArea area)
           
 void MutableCControlRegister.addContentArea(CContentArea area)
          Adds a new content area to this register.
 boolean DefaultCControlRegister.removeContentArea(CContentArea area)
           
 boolean MutableCControlRegister.removeContentArea(CContentArea area)
          Removes area from this register
 void DefaultCControlRegister.setDefaultContentArea(CContentArea area)
           
 void MutableCControlRegister.setDefaultContentArea(CContentArea area)
          Sets the default content area.
 

Uses of CContentArea in bibliothek.gui.dock.common.location
 

Methods in bibliothek.gui.dock.common.location that return CContentArea
 CContentArea CBaseLocation.getContentArea()
          Gets the contentarea to which this location relates.
 

Constructors in bibliothek.gui.dock.common.location with parameters of type CContentArea
CBaseLocation(CContentArea center)