Uses of Interface
bibliothek.gui.dock.station.support.PlaceholderMap.Key

Packages that use PlaceholderMap.Key
bibliothek.gui.dock.station.support Elements used by various DockStations to store properties and to propagate events to other objects. 
 

Uses of PlaceholderMap.Key in bibliothek.gui.dock.station.support
 

Methods in bibliothek.gui.dock.station.support that return PlaceholderMap.Key
 PlaceholderMap.Key PlaceholderMap.copyKey(PlaceholderMap.Key key)
          Creates a copy of key.
 PlaceholderMap.Key[] PlaceholderMap.getPlaceholders()
          Gets all placeholders that are known to this map in the order they were added to this map.
 PlaceholderMap.Key PlaceholderMap.newKey(Path... placeholders)
          Creates a new shared key for any set of placeholders.
 PlaceholderMap.Key PlaceholderMap.newUniqueKey(Path... placeholders)
          Creates a new non-shared key for any set of placeholders.
 

Methods in bibliothek.gui.dock.station.support with parameters of type PlaceholderMap.Key
 void PlaceholderMap.add(PlaceholderMap.Key placeholder)
          Adds the placeholder placeholder to this map.
 boolean PlaceholderMap.contains(PlaceholderMap.Key placeholder, java.lang.String key)
          Tells whether key exists for placeholder.
 PlaceholderMap.Key PlaceholderMap.copyKey(PlaceholderMap.Key key)
          Creates a copy of key.
 java.lang.Object PlaceholderMap.get(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the data that is stored under key.
 java.lang.Object[] PlaceholderMap.getArray(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the map that is stored under key
 boolean PlaceholderMap.getBoolean(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the boolean that is stored under key
 double PlaceholderMap.getDouble(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the double that is stored under key
 int PlaceholderMap.getInt(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the integer that is stored under key
 java.lang.String[] PlaceholderMap.getKeys(PlaceholderMap.Key placeholder)
          Gets all keys that are in use for placeholder in the order they were first used to put an object into this map.
 long PlaceholderMap.getLong(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the long that is stored under key
 PlaceholderMap PlaceholderMap.getMap(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the map that is stored under key
 java.lang.String PlaceholderMap.getString(PlaceholderMap.Key placeholder, java.lang.String key)
          Gets the string that is stored under key
 void PlaceholderMap.put(PlaceholderMap.Key placeholder, java.lang.String key, java.lang.Object value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putArray(PlaceholderMap.Key placeholder, java.lang.String key, java.lang.Object[] value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putBoolean(PlaceholderMap.Key placeholder, java.lang.String key, boolean value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putDouble(PlaceholderMap.Key placeholder, java.lang.String key, double value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putInt(PlaceholderMap.Key placeholder, java.lang.String key, int value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putLong(PlaceholderMap.Key placeholder, java.lang.String key, long value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putMap(PlaceholderMap.Key placeholder, java.lang.String key, PlaceholderMap value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.putString(PlaceholderMap.Key placeholder, java.lang.String key, java.lang.String value)
          Stores the value value in this map, adds placeholder if necessary, overrides the value stored at key if existent.
 void PlaceholderMap.remove(PlaceholderMap.Key placeholder)
          Removes placeholder and all information that is associated with placeholder from this map.
 java.lang.Object PlaceholderMap.remove(PlaceholderMap.Key placeholder, java.lang.String key)
          Removes the value that is stored at key.