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

Packages that use Dictionary
org.apache.pivot.beans Contains classes that provide access to the Java bean properties of an object via a dictionary interface. 
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.util Contains a collection of common utility classes. 
org.apache.pivot.web Provides classes for communicating with HTTP-based web services. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
org.apache.pivot.wtkx Provides support for loading WTK components and other classes from XML. 
 

Uses of Dictionary in org.apache.pivot.beans
 

Classes in org.apache.pivot.beans that implement Dictionary
 class BeanDictionary
          Exposes Java bean properties of an object via the Dictionary interface.
 

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

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

Uses of Dictionary in org.apache.pivot.collections
 

Subinterfaces of Dictionary in org.apache.pivot.collections
 interface Map<K,V>
          Collection interface representing set of key/value pairs.
 

Classes in org.apache.pivot.collections that implement Dictionary
 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.
 

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

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

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

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

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

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

Uses of Dictionary in org.apache.pivot.util
 

Classes in org.apache.pivot.util that implement Dictionary
 class MIMEType
          Utility class for introspecting a MIME type string.
 class Resources
          Reads a JSON resource at Resources.baseName using ClassLoader.getResourceAsStream(String).
 

Uses of Dictionary in org.apache.pivot.web
 

Classes in org.apache.pivot.web that implement Dictionary
 class QueryDictionary
          Represents a collection of keyed data associated with a query.
 

Uses of Dictionary in org.apache.pivot.wtk
 

Classes in org.apache.pivot.wtk that implement Dictionary
static class Action.NamedActionDictionary
          Action dictionary implementation.
static class ApplicationContext.ResourceCacheDictionary
          Resource cache dictionary implementation.
static class Button.NamedGroupDictionary
          Named group dictionary.
static class Component.ComponentDictionary
          Provides dictionary access to all components by handle.
 class Component.StyleDictionary
          Style dictionary implementation.
 class Component.UserDataDictionary
          User data dictionary implementation.
 

Methods in org.apache.pivot.wtk that return Dictionary
 Dictionary<String,Object> Renderer.getStyles()
          Returns the renderer's style dictionary.
 

Methods in org.apache.pivot.wtk with parameters of type Dictionary
static Paint GraphicsUtilities.decodePaint(Dictionary<String,?> value)
           
 void ListButton.load(Dictionary<String,?> context)
           
 void ListView.load(Dictionary<String,?> context)
           
 void Button.load(Dictionary<String,?> context)
           
 void Component.load(Dictionary<String,?> context)
          Copies bound values from the bind context to the component.
 void CalendarButton.load(Dictionary<String,?> context)
          Loads the selected date from the specified bind context using this date picker button's bind key, if one is set.
 void TextArea.load(Dictionary<String,?> context)
           
 void TextInput.load(Dictionary<String,?> context)
           
 void Container.load(Dictionary<String,?> context)
          Propagates binding to subcomponents.
 void Spinner.load(Dictionary<String,?> context)
           
 void Label.load(Dictionary<String,?> context)
           
 void Calendar.load(Dictionary<String,?> context)
          Loads the selected date from the specified bind context using this date picker's bind key, if one is set.
 void CalendarButton.setLocale(Dictionary<String,?> locale)
          Sets the locale used to present calendar data.
 void Calendar.setLocale(Dictionary<String,?> locale)
          Sets the locale used to present calendar data.
 void ScrollBar.setRange(Dictionary<String,?> range)
           
 void Slider.setRange(Dictionary<String,?> range)
           
 void ListButton.store(Dictionary<String,?> context)
           
 void ListView.store(Dictionary<String,?> context)
           
 void Button.store(Dictionary<String,?> context)
           
 void Component.store(Dictionary<String,?> context)
          Copies bound values from the component to the bind context.
 void CalendarButton.store(Dictionary<String,?> context)
          Stores the selected date into the specified bind context using this date picker button's bind key, if one is set.
 void TextArea.store(Dictionary<String,?> context)
           
 void TextInput.store(Dictionary<String,?> context)
           
 void Container.store(Dictionary<String,?> context)
          Propagates binding to subcomponents.
 void Spinner.store(Dictionary<String,?> context)
           
 void Label.store(Dictionary<String,?> context)
           
 void Calendar.store(Dictionary<String,?> context)
          Stores the selected date into the specified bind context using this date picker's bind key, if one is set.
 

Constructors in org.apache.pivot.wtk with parameters of type Dictionary
Bounds(Dictionary<String,?> bounds)
           
CornerRadii(Dictionary<String,?> cornerRadii)
           
Dimensions(Dictionary<String,?> dimensions)
           
Insets(Dictionary<String,?> insets)
           
Limits(Dictionary<String,?> limits)
           
Point(Dictionary<String,?> point)
           
Span(Dictionary<String,?> span)
           
 

Uses of Dictionary in org.apache.pivot.wtk.content
 

Classes in org.apache.pivot.wtk.content that implement Dictionary
 class TableRow
          Default table row implementation.
 

Methods in org.apache.pivot.wtk.content that return Dictionary
 Dictionary<String,Component> TableViewRowEditor.getCellEditors()
          Gets this row editor's cell editor dictionary.
 Dictionary<String,Object> TableViewMultiCellRenderer.getStyles()
           
 

Uses of Dictionary in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type Dictionary
 void ContainerSkin.setBackgroundPaint(Dictionary<String,?> backgroundPaint)
           
 void BorderSkin.setCornerRadii(Dictionary<String,?> cornerRadii)
           
 void TextAreaSkin.setMargin(Dictionary<String,?> margin)
           
 void SeparatorSkin.setPadding(Dictionary<String,?> padding)
           
 void CardPaneSkin.setPadding(Dictionary<String,?> padding)
           
 void BorderSkin.setPadding(Dictionary<String,?> padding)
           
 void StackPaneSkin.setPadding(Dictionary<String,?> padding)
           
 void BoxPaneSkin.setPadding(Dictionary<String,?> padding)
           
 void FlowPaneSkin.setPadding(Dictionary<String,?> padding)
           
 void TablePaneSkin.setPadding(Dictionary<String,?> padding)
          Sets the padding that will be reserved around the table pane during layout.
 void LabelSkin.setPadding(Dictionary<String,?> padding)
           
 

Uses of Dictionary in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type Dictionary
 void TerraListViewSkin.setCheckboxPadding(Dictionary<String,?> checkboxPadding)
           
 void TerraTabPaneSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraAccordionSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraCalendarButtonSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraExpanderSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraMenuButtonSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraListButtonSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraPushButtonSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraFrameSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraTextInputSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraPaletteSkin.setPadding(Dictionary<String,?> padding)
           
 void TerraSheetSkin.setPadding(Dictionary<String,?> padding)
           
 

Uses of Dictionary in org.apache.pivot.wtkx
 

Classes in org.apache.pivot.wtkx that implement Dictionary
 class WTKXSerializer
          Loads an object hierarchy from an XML document.