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

Packages that use Combiner
bibliothek.extension.gui.dock.station   
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.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
static Combiner DockUI.getCombiner(Combiner combiner, DockStation station)
          Deprecated. this method is no longer used, clients should use the ThemeManager to retrieve such resources
 Combiner DockTheme.getCombiner(DockStation station)
          Gets the Combiner for station.
 

Methods in bibliothek.gui with parameters of type Combiner
static Combiner DockUI.getCombiner(Combiner combiner, DockStation station)
          Deprecated. this method is no longer used, clients should use the ThemeManager to retrieve such resources
 

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.themes
 

Classes in bibliothek.gui.dock.themes that implement Combiner
 class StationCombinerValue
          A CombinerWrapper 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(java.lang.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.