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

Packages that use PropertyKey
bibliothek.gui.dock   
bibliothek.gui.dock.util   
 

Uses of PropertyKey in bibliothek.gui.dock
 

Constructors in bibliothek.gui.dock with parameters of type PropertyKey
AbstractDockable(PropertyKey<javax.swing.Icon> titleIcon, PropertyKey<java.lang.String> titleText)
          Creates a new dockable.
AbstractDockable(PropertyKey<javax.swing.Icon> titleIcon, PropertyKey<java.lang.String> titleText)
          Creates a new dockable.
 

Uses of PropertyKey in bibliothek.gui.dock.util
 

Fields in bibliothek.gui.dock.util declared as PropertyKey
static PropertyKey<javax.swing.Icon> PropertyKey.DOCK_STATION_ICON
          The Icon used for a DockStation if it has no icon.
static PropertyKey<java.lang.String> PropertyKey.DOCK_STATION_TITLE
          The title of a DockStation if it has no title.
static PropertyKey<javax.swing.Icon> PropertyKey.DOCKABLE_ICON
          The Icon used for a Dockable if it has no icon.
static PropertyKey<java.lang.String> PropertyKey.DOCKABLE_TITLE
          The title of a Dockable if it has no title.
private  PropertyKey<A> DockProperties.Entry.key
          the name of this entry
private  PropertyKey<A> PropertyValue.key
          the access to the value
 

Fields in bibliothek.gui.dock.util with type parameters of type PropertyKey
private  java.util.Map<PropertyKey<?>,DockProperties.Entry<?>> DockProperties.map
          the map of values
 

Methods in bibliothek.gui.dock.util that return PropertyKey
 PropertyKey<A> DockProperties.Entry.getKey()
          Gets the name of this entry.
 PropertyKey<A> PropertyValue.getKey()
          Gest the key which is used to access the value in DockProperties.
 

Methods in bibliothek.gui.dock.util with parameters of type PropertyKey
<A> void
DockProperties.addListener(PropertyKey<A> key, DockPropertyListener<A> listener)
          Adds a listener that will be informed whenever the value accessed through key changes.
<A> A
DockProperties.get(PropertyKey<A> key)
          Gets the value accessed by key.
private
<A> DockProperties.Entry<A>
DockProperties.getEntry(PropertyKey<A> key, boolean secure)
          Gets the entry for key.
 void DockPropertyListener.propertyChanged(DockProperties properties, PropertyKey<A> property, A oldValue, A newValue)
          Invoked if the observed value has been changed.
<A> void
DockProperties.removeListener(PropertyKey<A> key, DockPropertyListener<A> listener)
          Removes an earlier added listener.
<A> void
DockProperties.set(PropertyKey<A> key, A value)
          Sets a value.
 

Constructors in bibliothek.gui.dock.util with parameters of type PropertyKey
PropertyValue(PropertyKey<A> key)
          Creates a new value.