Uses of Interface
bibliothek.util.Filter

Packages that use Filter
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.behavior   
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.component   
bibliothek.gui.dock.control.focus The focus sub-system is responsible for transfering the focus to the currently active Dockable
bibliothek.util.filter Additional implementations of the Filter interface. 
 

Uses of Filter in bibliothek.gui.dock.common
 

Methods in bibliothek.gui.dock.common with parameters of type Filter
 void CControl.addSingleDockableFactory(Filter<String> ids, SingleCDockableFactory factory)
          Adds a factory to this control.
 CDockable CFocusHistory.getFirst(Filter<CDockable> filter)
          Gets the first CDockable matching filter.
 CDockable DefaultCFocusHistory.getFirst(Filter<CDockable> filter)
           
 

Uses of Filter in bibliothek.gui.dock.common.behavior
 

Fields in bibliothek.gui.dock.common.behavior declared as Filter
static Filter<String> ExternalizingCGridAreaFactory.PATTERN
          The pattern that is used to automatically generate new ExternalizingCGridArea
 

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

Methods in bibliothek.gui.dock.common.intern with parameters of type Filter
 void CommonSingleDockableFactory.add(Filter<String> ids, SingleCDockableFactory factory)
          Registers a new factory that will load SingleCDockable with unique identifiers that are included by ids.
 boolean AbstractCDockable.setLocationsAside(Filter<CDockable> filter)
           
 boolean CDockable.setLocationsAside(Filter<CDockable> filter)
          Traverses the history of focused CDockables, and selects the newest item with focus and matching filter for calling CDockable.setLocationsAside(CDockable).
 

Uses of Filter in bibliothek.gui.dock.component
 

Methods in bibliothek.gui.dock.component with parameters of type Filter
 void DefaultDockComponentManager.addConfiguration(Filter<DockComponentRoot> filter, DockComponentConfiguration configuration)
           
 void DockComponentManager.addConfiguration(Filter<DockComponentRoot> filter, DockComponentConfiguration configuration)
          Adds a new configuration, the configuration is only applied if filter includes a DockComponentRoot, and if no other configuration was applied
 

Uses of Filter in bibliothek.gui.dock.control.focus
 

Methods in bibliothek.gui.dock.control.focus with parameters of type Filter
 Dockable DefaultFocusHistory.getFirst(Filter<Dockable> filter)
           
 Dockable FocusHistory.getFirst(Filter<Dockable> filter)
          Traverses the history in reverse and returns the first Dockable matching filter.
 

Uses of Filter in bibliothek.util.filter
 

Classes in bibliothek.util.filter that implement Filter
 class PresetFilter<T>
          This filter keeps a set of items, an item is included if it is contained in that set.
 class RegexFilter
          This filter uses regular expressions to filter a String.