Uses of Interface
pivot.collections.Dictionary

Packages that use Dictionary
pivot.beans Contains classes that provide access to the Java bean properties of an object via a dictionary interface. 
pivot.charts.content Contains classes representing chart data. 
pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
pivot.collections.immutable Contains a set of read-only collection implementations. 
pivot.util Contains a collection of common utility classes. 
pivot.web Provides classes for communicating with HTTP-based web services. 
pivot.web.server Contains classes to facilitate access to and development of web query services. 
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of Dictionary in pivot.beans
 

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

Uses of Dictionary in pivot.charts.content
 

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

Uses of Dictionary in pivot.collections
 

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

Classes in pivot.collections that implement Dictionary
 class HashMap<K,V>
          Implementation of the Map interface that is backed by a hashtable.
 

Uses of Dictionary in pivot.collections.adapter
 

Classes in 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 pivot.collections.concurrent
 

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

Uses of Dictionary in pivot.collections.immutable
 

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

Uses of Dictionary in pivot.util
 

Classes in pivot.util that implement Dictionary
 class MIMEType
          Utility class for introspecting a MIME type string.
 class Preferences
          Provides access to application preference data.
 class Resources
          Reads a JSON resource at Resources.baseName using ClassLoader.getResourceAsStream(String).
 

Constructors in pivot.util with parameters of type Dictionary
Preferences(java.net.URL url, Dictionary<java.lang.String,java.lang.Object> defaults)
          Creates a preferences object that provides access to the preferences for a given URL.
 

Uses of Dictionary in pivot.web
 

Classes in pivot.web that implement Dictionary
 class Query.ArgumentsDictionary
          Arguments dictionary implementation.
 class Query.RequestPropertiesDictionary
          Request properties dictionary implementation.
 class Query.ResponsePropertiesDictionary
          Response properties dictionary implementation.
 

Uses of Dictionary in pivot.web.server
 

Classes in pivot.web.server that implement Dictionary
 class QueryServlet.ArgumentsDictionary
          Arguments dictionary implementation.
 class QueryServlet.RequestPropertiesDictionary
          Request properties dictionary implementation.
 class QueryServlet.ResponsePropertiesDictionary
          Response properties dictionary implementation.
 

Uses of Dictionary in pivot.wtk
 

Classes in pivot.wtk that implement Dictionary
static class Action.ActionDictionary
          Action dictionary implementation.
static class ApplicationContext.ResourceCacheDictionary
          Resource cache dictionary implementation.
static class Component.ComponentDictionary
          Provides dictionary access to all components by handle.
 class Component.StyleDictionary
          Style dictionary implementation.
 class Window.ActionDictionary
          Action dictionary implementation.
 

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

Methods in pivot.wtk with parameters of type Dictionary
 void Calendar.load(Dictionary<java.lang.String,?> context)
          Loads the selected date from the specified bind context using this date picker's bind key, if one is set.
 void Button.load(Dictionary<java.lang.String,?> context)
           
 void Component.load(Dictionary<java.lang.String,?> context)
          Copies bound values from the bind context to the component.
 void TextInput.load(Dictionary<java.lang.String,?> context)
           
 void CalendarButton.load(Dictionary<java.lang.String,?> context)
          Loads the selected date from the specified bind context using this date picker button's bind key, if one is set.
 void ListView.load(Dictionary<java.lang.String,?> context)
           
 void ListButton.load(Dictionary<java.lang.String,?> context)
           
 void Container.load(Dictionary<java.lang.String,?> context)
          Propagates binding to subcomponents.
 void Label.load(Dictionary<java.lang.String,?> context)
           
 void Spinner.load(Dictionary<java.lang.String,?> context)
           
 void TextArea.load(Dictionary<java.lang.String,?> context)
           
 void Slider.setBounds(Dictionary<java.lang.String,?> bounds)
           
 void Calendar.setLocale(Dictionary<java.lang.String,?> locale)
          Sets the locale used to present calendar data.
 void CalendarButton.setLocale(Dictionary<java.lang.String,?> locale)
          Sets the locale used to present calendar data.
 void SplitPane.setSplitBounds(Dictionary<java.lang.String,?> splitBounds)
           
 void Application.startup(Display display, Dictionary<java.lang.String,java.lang.String> properties)
          Called when the application is starting up.
 void ScriptApplication.startup(Display display, Dictionary<java.lang.String,java.lang.String> properties)
           
 void Calendar.store(Dictionary<java.lang.String,?> context)
          Stores the selected date into the specified bind context using this date picker's bind key, if one is set.
 void Button.store(Dictionary<java.lang.String,?> context)
           
 void Component.store(Dictionary<java.lang.String,?> context)
          Copies bound values from the component to the bind context.
 void TextInput.store(Dictionary<java.lang.String,?> context)
           
 void CalendarButton.store(Dictionary<java.lang.String,?> context)
          Stores the selected date into the specified bind context using this date picker button's bind key, if one is set.
 void ListView.store(Dictionary<java.lang.String,?> context)
           
 void ListButton.store(Dictionary<java.lang.String,?> context)
           
 void Container.store(Dictionary<java.lang.String,?> context)
          Propagates binding to subcomponents.
 void Label.store(Dictionary<java.lang.String,?> context)
           
 void Spinner.store(Dictionary<java.lang.String,?> context)
           
 void TextArea.store(Dictionary<java.lang.String,?> context)
           
 

Constructors in pivot.wtk with parameters of type Dictionary
Bounds(Dictionary<java.lang.String,?> bounds)
           
CornerRadii(Dictionary<java.lang.String,?> cornerRadii)
           
Dimensions(Dictionary<java.lang.String,?> dimensions)
           
Form.Flag(Dictionary<java.lang.String,?> flag)
           
Insets(Dictionary<java.lang.String,?> insets)
           
Point(Dictionary<java.lang.String,?> point)
           
Span(Dictionary<java.lang.String,?> span)
           
 

Uses of Dictionary in pivot.wtk.content
 

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

Methods in pivot.wtk.content that return Dictionary
 Dictionary<java.lang.String,java.lang.Object> TableViewMultiCellRenderer.getStyles()
           
 

Uses of Dictionary in pivot.wtk.skin
 

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

Uses of Dictionary in pivot.wtk.skin.terra
 

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