Uses of Interface
bibliothek.gui.dock.station.Combiner

Packages that use Combiner
bibliothek.extension.gui.dock.station Contains extensions to the DockStations. 
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock.common.theme Classes related to the DockThemes. 
bibliothek.gui.dock.layout.location   
bibliothek.gui.dock.station Elements needed by various implementations of the DockStation interface. 
bibliothek.gui.dock.themes Contains an implementation of DockTheme and all classes which are neede by this theme. 
bibliothek.gui.dock.themes.basic Factories and classes used when the BasicTheme is active. 
 

Uses of Combiner in bibliothek.extension.gui.dock.station
 

Classes in bibliothek.extension.gui.dock.station that implement Combiner
 class SplitCombiner
          This is an alternative implementation of a Combiner, normally not used by this framework.
 

Uses of Combiner in bibliothek.gui
 

Fields in bibliothek.gui with type parameters of type Combiner
static PropertyKey<Combiner> DockTheme.COMBINER
          A unique identifier for the DockProperties to access the current Combiner.
 

Methods in bibliothek.gui that return Combiner
 Combiner DockTheme.getCombiner(DockStation station)
          Gets the Combiner for station.
This method should not be used directly, instead an UIValue of type StationCombinerValue should be installed at the local ThemeManager to retrieve the value.
 

Uses of Combiner in bibliothek.gui.dock.common.theme
 

Methods in bibliothek.gui.dock.common.theme that return Combiner
 Combiner CDockTheme.getCombiner(DockStation station)
           
 

Uses of Combiner in bibliothek.gui.dock.layout.location
 

Methods in bibliothek.gui.dock.layout.location with parameters of type Combiner
 AsideAnswer AsideRequest.forward(Combiner combiner)
          Calls the aside(AsideRequest) method of combiner with the successor of the current location.
 AsideAnswer DefaultAsideRequest.forward(Combiner combiner)
           
 AsideAnswer AsideRequest.forward(Combiner combiner, PlaceholderMap layout)
          Calls the aside(AsideRequest) method of combiner with the successor of the current location.
 AsideAnswer DefaultAsideRequest.forward(Combiner combiner, PlaceholderMap layout)
           
 

Constructors in bibliothek.gui.dock.layout.location with parameters of type Combiner
DefaultAsideRequest.CombinerForward(Combiner combiner, PlaceholderMap layout)
           
 

Uses of Combiner in bibliothek.gui.dock.station
 

Methods in bibliothek.gui.dock.station with parameters of type Combiner
<T extends PlaceholderListItem<Dockable>>
void
DockStationDelegate.combine(PlaceholderList.Item item, Combiner combiner, AsideRequest request)
          Can be called by DockStation.aside(AsideRequest) if request contains a location that points toward item.
 

Uses of Combiner in bibliothek.gui.dock.themes
 

Classes in bibliothek.gui.dock.themes that implement Combiner
 class StationCombinerValue
          A StationCombinerValue encloses a Combiner and uses the combiner as delegate.
 class ThemeCombiner
          A Combiner that forwards calls to the Combiner of the current DockTheme.
 

Fields in bibliothek.gui.dock.themes with type parameters of type Combiner
static TypedUIProperties.Type<Combiner> ThemeManager.COMBINER_TYPE
          Identifier for the type Combiner
 

Methods in bibliothek.gui.dock.themes that return Combiner
 Combiner BasicTheme.getCombiner(DockStation station)
           
 Combiner NoStackTheme.getCombiner(DockStation station)
           
 

Methods in bibliothek.gui.dock.themes with parameters of type Combiner
 void BasicTheme.setCombiner(Combiner combiner)
          Sets the Combiner of this theme.
 void BasicTheme.setCombiner(Combiner combiner, Priority priority)
          Sets the Combiner of this theme.
 void ThemeManager.setCombiner(String id, Combiner value)
          Sets a strategy how two Dockables can be merged into a new Dockable.
 

Method parameters in bibliothek.gui.dock.themes with type arguments of type Combiner
 void ThemeManager.setCombinerBridge(Path kind, UIBridge<Combiner,UIValue<Combiner>> bridge)
          Sets the UIBridge that will transfer properties to those UIValues whose kind is either kind or a child of kind.
 void ThemeManager.setCombinerBridge(Path kind, UIBridge<Combiner,UIValue<Combiner>> bridge)
          Sets the UIBridge that will transfer properties to those UIValues whose kind is either kind or a child of kind.
 

Uses of Combiner in bibliothek.gui.dock.themes.basic
 

Classes in bibliothek.gui.dock.themes.basic that implement Combiner
 class BasicCombiner
          A simple implementation of Combiner, which merges two Dockables by creating a StackDockStation, and putting the children onto this station.