Uses of Class
bibliothek.gui.dock.util.Priority

Packages that use Priority
bibliothek.gui.dock.themes Contains an implementation of DockTheme and all classes which are neede by this theme. 
bibliothek.gui.dock.themes.color The color subsystem allows each kind of element to get its colors from a central repository. 
bibliothek.gui.dock.title Elements needed to paint the title of a Dockable
bibliothek.gui.dock.util Distribution of information in a global scale and methods available from everywhere. 
bibliothek.gui.dock.util.color   
 

Uses of Priority in bibliothek.gui.dock.themes
 

Methods in bibliothek.gui.dock.themes with parameters of type Priority
 void ColorScheme.transmitAll(Priority priority, ColorManager manager)
          Transmits all values in this scheme to manager.
 

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

Methods in bibliothek.gui.dock.themes.color with parameters of type Priority
 void DefaultColorScheme.transmitAll(Priority priority, ColorManager manager)
           
 

Uses of Priority in bibliothek.gui.dock.title
 

Methods in bibliothek.gui.dock.title with parameters of type Priority
 DockTitleFactory DockTitleVersion.getFactory(Priority priority)
          Gets the factory with the given priority.
 boolean DockTitleVersion.isSet(Priority priority)
          Tells whether there is a factory with the importance priority, or not.
 DockTitleVersion DockTitleManager.register(String id, DockTitleFactory factory, Priority priority)
          Registers a factory for the given key
 void DockTitleVersion.setFactory(DockTitleFactory factory, Priority priority)
          Stores factory at the slot priority.
 

Uses of Priority in bibliothek.gui.dock.util
 

Methods in bibliothek.gui.dock.util that return Priority
static Priority Priority.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Priority[] Priority.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in bibliothek.gui.dock.util with parameters of type Priority
 T PriorityValue.get(Priority priority)
          Gets the value for a given priority.
 boolean PriorityValue.set(Priority priority, T value)
          Sets the value for a given priority.
 void IconManager.setIcon(String key, Priority priority, Icon icon)
          Stores an icon.
 

Uses of Priority in bibliothek.gui.dock.util.color
 

Methods in bibliothek.gui.dock.util.color with parameters of type Priority
 void ColorManager.clear(Priority priority)
          Removes all values that stored under the given priority.
<D extends DockColor>
void
ColorManager.publish(Priority priority, Class<? extends D> kind, ColorProvider<D> provider)
          Adds a new provider of colors to this manager.
 void ColorManager.put(Priority priority, String id, Color color)
          Sets a color of this manager.
 void ColorManager.unpublish(Priority priority, Class<? extends DockColor> kind)
          Removes the ColorProvider that handles DockColors of kind kind.
 void ColorManager.unpublish(Priority priority, ColorProvider<?> provider)
          Searches for all occurrences of provider and removes them.