Uses of Interface
bibliothek.gui.dock.DockFactory

Packages that use DockFactory
bibliothek.gui   
bibliothek.gui.dock   
bibliothek.gui.dock.security   
bibliothek.gui.dock.station.flap   
bibliothek.gui.dock.station.screen   
bibliothek.gui.dock.station.split   
bibliothek.gui.dock.station.stack   
 

Uses of DockFactory in bibliothek.gui
 

Fields in bibliothek.gui with type parameters of type DockFactory
private  java.util.Set<DockFactory<? extends DockElement>> DockFrontend.dockFactories
          A set of factories needed to store Dockables
 

Methods in bibliothek.gui with parameters of type DockFactory
 void DockFrontend.registerFactory(DockFactory<? extends DockElement> factory)
          Registers a factory to write and read Dockables and DockStations
static
<D extends DockStation>
void
DockUI.updateTheme(D station, DockFactory<? super D> factory)
          Removes all children of station and then adds the children again.
 

Uses of DockFactory in bibliothek.gui.dock
 

Classes in bibliothek.gui.dock that implement DockFactory
 class DefaultDockableFactory
          A factory which can read and write the properties of a DefaultDockable.
private  class PredefinedDockSituation.PreloadFactory
          A factory which uses other factories as delegate.
 

Fields in bibliothek.gui.dock with type parameters of type DockFactory
private  java.util.Map<java.lang.String,DockFactory<?>> DockSituation.factories
          the factories used to create new elements
 

Methods in bibliothek.gui.dock that return DockFactory
protected  DockFactory<? extends DockElement> DockSituation.getFactory(java.lang.String id)
          Gets the factory which has the given id.
protected  DockFactory<? extends DockElement> PredefinedDockSituation.getFactory(java.lang.String id)
           
 

Methods in bibliothek.gui.dock with parameters of type DockFactory
 void DockSituation.add(DockFactory<?> factory)
          Adds a factory
protected  java.lang.String DockSituation.getID(DockFactory<?> factory)
          Gets the id of factory.
protected  java.lang.String PredefinedDockSituation.getID(DockFactory<?> factory)
           
 

Constructors in bibliothek.gui.dock with parameters of type DockFactory
DockSituation(DockFactory<?>... factories)
          Constructs a new DockSituation and sets some factories which are used to create new DockElements
 

Uses of DockFactory in bibliothek.gui.dock.security
 

Classes in bibliothek.gui.dock.security that implement DockFactory
 class SecureFlapDockStationFactory
          A factory that creates instances of SecureFlapDockStation
 class SecureScreenDockStationFactory
          A factory which creates instances of SecureScreenDockStation.
 

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

Classes in bibliothek.gui.dock.station.flap that implement DockFactory
 class FlapDockStationFactory
          A DockFactory which can create instances of FlapDockStation.
 

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

Classes in bibliothek.gui.dock.station.screen that implement DockFactory
 class ScreenDockStationFactory
          A DockFactory which writes and reads instances of ScreenDockStation.
 

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

Classes in bibliothek.gui.dock.station.split that implement DockFactory
 class SplitDockStationFactory
          A factory that creates SplitDockStations.
 

Uses of DockFactory in bibliothek.gui.dock.station.stack
 

Classes in bibliothek.gui.dock.station.stack that implement DockFactory
 class StackDockStationFactory
          A DockFactory that can read and write instances of StackDockStation.