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

Packages that use DockableDisplayer
bibliothek.extension.gui.dock.theme.bubble Various graphical and logical components used when BubbleTheme is active. 
bibliothek.extension.gui.dock.theme.eclipse.displayer The DockableDisplayers that are used by the EclipseTheme
bibliothek.extension.gui.dock.theme.flat Various graphical and logical components needed to paint the layout when FlatTheme is active. 
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.displayer Classes and interfaces that are needed by the DockableDisplayer
bibliothek.gui.dock.station Elements needed by various implementations of the DockStation interface. 
bibliothek.gui.dock.station.flap Elements that are related to the FlapDockStation
bibliothek.gui.dock.station.screen Elements that are related to the ScreenDockStation
bibliothek.gui.dock.station.split Elements which are needed by the SplitDockStation, and which are needed to interact with the station. 
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. 
bibliothek.gui.dock.themes.color The color subsystem allows each kind of element to get its colors from a central repository. 
 

Uses of DockableDisplayer in bibliothek.extension.gui.dock.theme.bubble
 

Classes in bibliothek.extension.gui.dock.theme.bubble that implement DockableDisplayer
 class BubbleDisplayer
          A DockableDisplayer drawing a border around its content, but leaves the side at which the title lies open.
 

Methods in bibliothek.extension.gui.dock.theme.bubble that return DockableDisplayer
 DockableDisplayer BubbleDisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
           
 

Uses of DockableDisplayer in bibliothek.extension.gui.dock.theme.eclipse.displayer
 

Classes in bibliothek.extension.gui.dock.theme.eclipse.displayer that implement DockableDisplayer
 class EclipseBasicDockableDisplayer
          This BasicDockableDisplayer observes the EclipseThemeConnector and may discard itself if no longer valid.
 class EclipseDockableDisplayer
          This displayer paints a tab instead of a DockTitle (if the framework sets a title, then this title is ignored).
 class NoTitleDisplayer
          A DockableDisplayer which is not able to show the DockTitle of its Dockable.
 

Methods in bibliothek.extension.gui.dock.theme.eclipse.displayer that return DockableDisplayer
 DockableDisplayer EclipseDisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
           
 

Uses of DockableDisplayer in bibliothek.extension.gui.dock.theme.flat
 

Classes in bibliothek.extension.gui.dock.theme.flat that implement DockableDisplayer
 class FlatDockableDisplayer
          A DockableDisplayer that uses a FlatBorder.
 

Methods in bibliothek.extension.gui.dock.theme.flat that return DockableDisplayer
 DockableDisplayer FlatDisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
           
 

Constructors in bibliothek.extension.gui.dock.theme.flat with parameters of type DockableDisplayer
FlatBorder(DockableDisplayer owner)
          Creates a new border.
 

Uses of DockableDisplayer in bibliothek.gui.dock
 

Methods in bibliothek.gui.dock with parameters of type DockableDisplayer
protected  void SplitDockStation.discard(DockableDisplayer displayer)
          Removes displayer and creates a replacement.
protected  void StackDockStation.discard(DockableDisplayer displayer)
          Replaces displayer with a new instance.
 

Uses of DockableDisplayer in bibliothek.gui.dock.displayer
 

Methods in bibliothek.gui.dock.displayer that return DockableDisplayer
 DockableDisplayer DisplayerBackgroundComponent.getDisplayer()
          Gets the displayer which is represented by this component.
 DockableDisplayer DisplayerDockBorder.getDisplayer()
          Gets the displayer for which this border is used.
 

Constructors in bibliothek.gui.dock.displayer with parameters of type DockableDisplayer
DisplayerFocusTraversalPolicy(DockableDisplayer displayer)
          Creates a new policy.
 

Uses of DockableDisplayer in bibliothek.gui.dock.station
 

Methods in bibliothek.gui.dock.station that return DockableDisplayer
 DockableDisplayer DisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
          Creates a new DockableDisplayer which will be shown on station, will have dockable as child and will display the title.
 DockableDisplayer DisplayerCollection.fetch(Dockable dockable, DockTitle title)
          Creates a new DockableDisplayer using the factory of this collection.
 DockableDisplayer StationChildHandle.getDisplayer()
          Gest the current displayer for this handle.
 

Methods in bibliothek.gui.dock.station that return types with arguments of type DockableDisplayer
 java.util.Iterator<DockableDisplayer> DisplayerCollection.iterator()
           
 

Methods in bibliothek.gui.dock.station with parameters of type DockableDisplayer
 void DockableDisplayerListener.discard(DockableDisplayer displayer)
          Called by displayer if it is no longer valid and should be replaced by another displayer.
 void DisplayerCollection.release(DockableDisplayer displayer)
          Releases a displayer that was created by this collection.
 

Uses of DockableDisplayer in bibliothek.gui.dock.station.flap
 

Methods in bibliothek.gui.dock.station.flap that return DockableDisplayer
 DockableDisplayer DefaultFlapWindow.getDisplayer()
          Gets the displayer used to show a Dockable.
 

Uses of DockableDisplayer in bibliothek.gui.dock.station.screen
 

Methods in bibliothek.gui.dock.station.screen that return DockableDisplayer
 DockableDisplayer AbstractScreenDockWindow.getDisplayer()
          Gets the displayer which is shown on this dialog.
 

Methods in bibliothek.gui.dock.station.screen with parameters of type DockableDisplayer
protected  void AbstractScreenDockWindow.showDisplayer(DockableDisplayer displayer)
           
protected abstract  void DisplayerScreenDockWindow.showDisplayer(DockableDisplayer displayer)
          Forces the subclass of this window to show displayer.
 

Uses of DockableDisplayer in bibliothek.gui.dock.station.split
 

Methods in bibliothek.gui.dock.station.split that return DockableDisplayer
 DockableDisplayer Leaf.getDisplayer()
          Gets the displayer of this leaf.
 

Uses of DockableDisplayer in bibliothek.gui.dock.themes
 

Methods in bibliothek.gui.dock.themes that return DockableDisplayer
 DockableDisplayer DefaultDisplayerFactoryValue.create(Dockable dockable, DockTitle title)
          Uses the current factory to create a new DockableDisplayer.
 DockableDisplayer ThemeDisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
           
 

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

Classes in bibliothek.gui.dock.themes.basic that implement DockableDisplayer
 class BasicDockableDisplayer
          A panel which shows one Dockable and one DockTitle.
 

Methods in bibliothek.gui.dock.themes.basic that return DockableDisplayer
 DockableDisplayer BasicDisplayerFactory.create(DockStation station, Dockable dockable, DockTitle title)
           
 DockableDisplayer BasicDockableDisplayer.DisplayerBorder.getDisplayer()
           
 

Uses of DockableDisplayer in bibliothek.gui.dock.themes.color
 

Methods in bibliothek.gui.dock.themes.color that return DockableDisplayer
 DockableDisplayer DisplayerColor.getDisplayer()
          Gets the element for which this color is used.
 

Constructors in bibliothek.gui.dock.themes.color with parameters of type DockableDisplayer
DisplayerColor(java.lang.String id, DockableDisplayer displayer, java.awt.Color backup)
          Creates a new DisplayerColor
DisplayerColor(java.lang.String id, Path kind, DockableDisplayer displayer, java.awt.Color backup)
          Creates a new DisplayerColor