Uses of Interface
org.apache.pivot.collections.Map

Packages that use Map
org.apache.pivot.charts.content Contains classes representing chart data. 
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
org.apache.pivot.collections.immutable Contains a set of read-only collection implementations. 
org.apache.pivot.serialization Contains a set of classes for use in data serialization. 
org.apache.pivot.util Contains a collection of common utility classes. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of Map in org.apache.pivot.charts.content
 

Classes in org.apache.pivot.charts.content that implement Map
 class CategorySeries
          Represents series data for category chart views.
 

Uses of Map in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement Map
 class EnumMap<E extends Enum<E>,V>
          Implementation of the Set interface whose keys are backed by a set of enum values.
 class HashMap<K,V>
          Implementation of the Map interface that is backed by a hash table.
 

Methods in org.apache.pivot.collections that return Map
 Map<K,V> MapList.getSource()
          Gets the source map.
 

Methods in org.apache.pivot.collections with parameters of type Map
 void MapListener.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
          Called when a map's comparator has changed.
 void MapListener.Adapter.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
           
 void Map.MapListenerList.comparatorChanged(Map<K,V> map, Comparator<K> previousComparator)
           
 void MapListener.mapCleared(Map<K,V> map)
          Called when map data has been reset.
 void MapListener.Adapter.mapCleared(Map<K,V> map)
           
 void Map.MapListenerList.mapCleared(Map<K,V> map)
           
 void MapList.setSource(Map<K,V> source)
          Sets the source map.
 void MapListListener.sourceChanged(MapList<K,V> mapList, Map<K,V> previousSource)
          Called when a map list's source has changed.
 void MapListener.valueAdded(Map<K,V> map, K key)
          Called when a key/value pair has been added to a map.
 void MapListener.Adapter.valueAdded(Map<K,V> map, K key)
           
 void Map.MapListenerList.valueAdded(Map<K,V> map, K key)
           
 void MapListener.valueRemoved(Map<K,V> map, K key, V value)
          Called when a key/value pair has been removed from a map.
 void MapListener.Adapter.valueRemoved(Map<K,V> map, K key, V value)
           
 void Map.MapListenerList.valueRemoved(Map<K,V> map, K key, V value)
           
 void MapListener.valueUpdated(Map<K,V> map, K key, V previousValue)
          Called when a map value has been updated.
 void MapListener.Adapter.valueUpdated(Map<K,V> map, K key, V previousValue)
           
 void Map.MapListenerList.valueUpdated(Map<K,V> map, K key, V previousValue)
           
 

Constructors in org.apache.pivot.collections with parameters of type Map
HashMap(Map<K,V> map)
           
MapList(Map<K,V> source)
          Creates a new map list that decorates the specified source map.
 

Uses of Map in org.apache.pivot.collections.adapter
 

Classes in org.apache.pivot.collections.adapter that implement Map
 class MapAdapter<K,V>
          Implementation of the Map interface that is backed by an instance of java.util.Map.
 

Uses of Map in org.apache.pivot.collections.concurrent
 

Classes in org.apache.pivot.collections.concurrent that implement Map
 class SynchronizedMap<K,V>
          Synchronized implementation of the Map interface.
 

Constructors in org.apache.pivot.collections.concurrent with parameters of type Map
SynchronizedMap(Map<K,V> map)
           
 

Uses of Map in org.apache.pivot.collections.immutable
 

Classes in org.apache.pivot.collections.immutable that implement Map
 class ImmutableMap<K,V>
          Unmodifiable implementation of the Map interface.
 

Constructors in org.apache.pivot.collections.immutable with parameters of type Map
ImmutableMap(Map<K,V> map)
           
 

Uses of Map in org.apache.pivot.serialization
 

Methods in org.apache.pivot.serialization that return Map
static Map<String,?> JSONSerializer.getMap(Object root, String path)
          Returns the value at the given path as a map.
static Map<String,?> JSONSerializer.parseMap(String json)
          Converts a JSON value to a map.
 Map<?,?> PropertiesSerializer.readObject(InputStream inputStream)
          Reads data from a properties stream.
 

Methods in org.apache.pivot.serialization with parameters of type Map
 String PropertiesSerializer.getMIMEType(Map<?,?> object)
           
static String JSONSerializer.toString(Map<String,?> value)
          Converts a map to a JSON string representation.
 void PropertiesSerializer.writeObject(Map<?,?> object, OutputStream outputStream)
          Writes data to a properties stream.
 

Uses of Map in org.apache.pivot.util
 

Methods in org.apache.pivot.util that return Map
 Map<String,?> Resources.getMap(String key)
           
 

Uses of Map in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk with parameters of type Map
 void Component.setStyles(Map<String,?> styles)
          Applies a set of styles.
 void Application.startup(Display display, Map<String,String> properties)
          Called when the application is starting up.
 void ScriptApplication.startup(Display display, Map<String,String> properties)