Uses of Interface
org.apache.pivot.collections.Dictionary
-
Packages that use Dictionary Package Description org.apache.pivot.beans Contains classes for manipulating and interacting with Java Bean types.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 byjava.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.json Contains classes that facilitate interaction with JSON and JSON-like data structures.org.apache.pivot.text Contains classes for working with text.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.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of Dictionary in org.apache.pivot.beans
Classes in org.apache.pivot.beans that implement Dictionary Modifier and Type Class Description class
BeanAdapter
Exposes Java bean properties of an object via theMap
interface. -
Uses of Dictionary in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement Dictionary Modifier and Type Class Description 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 Modifier and Type Interface Description interface
Map<K,V>
Collection interface representing set of key/value pairs.Classes in org.apache.pivot.collections that implement Dictionary Modifier and Type Class Description class
EnumMap<E extends java.lang.Enum<E>,V>
Implementation of theMap
interface whose keys are backed by an enum.class
HashMap<K,V>
Implementation of theMap
interface that is backed by a hash table.Methods in org.apache.pivot.collections with parameters of type Dictionary Modifier and Type Method Description default java.lang.Object
Dictionary. copy(K key, Dictionary<K,V> source)
Copy the value from one dictionary to this one. -
Uses of Dictionary in org.apache.pivot.collections.adapter
Classes in org.apache.pivot.collections.adapter that implement Dictionary Modifier and Type Class Description class
MapAdapter<K,V>
Implementation of theMap
interface that is backed by an instance ofMap
. -
Uses of Dictionary in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Dictionary Modifier and Type Class Description class
SynchronizedMap<K,V>
Synchronized implementation of theMap
interface. -
Uses of Dictionary in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Dictionary Modifier and Type Class Description class
ImmutableMap<K,V>
Unmodifiable implementation of theMap
interface. -
Uses of Dictionary in org.apache.pivot.json
Methods in org.apache.pivot.json with parameters of type Dictionary Modifier and Type Method Description void
JSONSerializerListener.Adapter. beginDictionary(JSONSerializer jsonSerializer, Dictionary<java.lang.String,?> value)
Deprecated.default void
JSONSerializerListener. beginDictionary(JSONSerializer jsonSerializer, Dictionary<java.lang.String,?> value)
Called when the serializer has begun reading a dictionary value.void
JSONSerializerListener.Listeners. beginDictionary(JSONSerializer jsonSerializer, Dictionary<java.lang.String,?> value)
-
Uses of Dictionary in org.apache.pivot.text
Constructors in org.apache.pivot.text with parameters of type Dictionary Constructor Description CharSpan(Dictionary<java.lang.String,?> charSpanDictionary)
Construct a new char span from the given dictionary which must contain theCharSpan.START_KEY
and can also contain theCharSpan.LENGTH_KEY
key. -
Uses of Dictionary in org.apache.pivot.util
Classes in org.apache.pivot.util that implement Dictionary Modifier and Type Class Description class
MIMEType
Utility class for introspection a MIME type string.class
Resources
Represents a set of localizable resources.Constructors in org.apache.pivot.util with parameters of type Dictionary Constructor Description Range(Dictionary<java.lang.String,?> range)
Range(Dictionary<java.lang.String,?> range)
-
Uses of Dictionary in org.apache.pivot.web
Classes in org.apache.pivot.web that implement Dictionary Modifier and Type Class Description 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 Modifier and Type Class Description static class
Action.NamedActionDictionary
Action dictionary implementation.static class
ApplicationContext.ResourceCacheDictionary
Resource cache dictionary implementation.class
Component.StyleDictionary
Style dictionary implementation.class
Component.UserDataDictionary
User data dictionary implementation.class
TableView.SortDictionary
Sort dictionary implementation.Methods in org.apache.pivot.wtk that return Dictionary Modifier and Type Method Description Dictionary<java.lang.String,java.lang.Object>
Renderer. getStyles()
Dictionary<java.lang.String,SortDirection>
TableView. setSort(java.lang.String sort)
Sets the table view's sort.Dictionary<java.lang.String,SortDirection>
TableView. setSort(java.lang.String columnName, SortDirection sortDirection)
Sets the table view's sort.Dictionary<java.lang.String,SortDirection>
TableView. setSort(Sequence<Dictionary.Pair<java.lang.String,SortDirection>> sort)
Sets the table view's sort.Methods in org.apache.pivot.wtk with parameters of type Dictionary Modifier and Type Method Description java.lang.Object
Component.StyleDictionary. copy(Style key, Dictionary<java.lang.String,java.lang.Object> source)
Copy the named style from one style dictionary to this one.static java.awt.Paint
GraphicsUtilities. decodePaint(Dictionary<java.lang.String,?> dictionary)
Interpret a dictionary as aPaint
value.static java.awt.Font
Theme. deriveFont(Dictionary<java.lang.String,?> dictionary)
Produce a font by describing it relative to the current theme's font.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
ScrollBar. setRange(Dictionary<java.lang.String,?> range)
void
Slider. setRange(Dictionary<java.lang.String,?> range)
void
ScrollBar. setScope(Dictionary<java.lang.String,?> scope)
Constructors in org.apache.pivot.wtk with parameters of type Dictionary Constructor Description Bounds(Dictionary<java.lang.String,?> bounds)
Construct a new bounds object given a map/dictionary of the four needed values.CornerRadii(Dictionary<java.lang.String,?> cornerRadii)
Construct aCornerRadii
object from a dictionary specifying values for each of the four corners.Dimensions(Dictionary<java.lang.String,?> dimensions)
Construct new dimensions from the given dictionary.Insets(Dictionary<java.lang.String,?> insets)
Construct a new set of insets given a dictionary with the values to use.Limits(Dictionary<java.lang.String,?> limits)
Construct a new Limits based on the given Dictionary or Map.Point(Dictionary<java.lang.String,?> point)
Construct a point from a dictionary containing the X- and Y-position values as entries.Scope(Dictionary<java.lang.String,?> scope)
Span(Dictionary<java.lang.String,?> span)
Construct a new span from the given dictionary which must contain theSpan.START_KEY
andSpan.END_KEY
keys. -
Uses of Dictionary in org.apache.pivot.wtk.content
Methods in org.apache.pivot.wtk.content that return Dictionary Modifier and Type Method Description Dictionary<java.lang.String,Component>
TableViewRowEditor. getCellEditors()
Gets this row editor's cell editor dictionary.Dictionary<java.lang.String,java.lang.Object>
TableViewMultiCellRenderer. getStyles()
-
Uses of Dictionary in org.apache.pivot.wtk.skin
Methods in org.apache.pivot.wtk.skin with parameters of type Dictionary Modifier and Type Method Description void
ContainerSkin. setBackgroundPaint(Dictionary<java.lang.String,?> backgroundPaintDictionary)
Sets the object used to paint the background of the container.void
RulerSkin. setFont(Dictionary<java.lang.String,?> font)
Sets the font used in rendering the Ruler's text.void
SeparatorSkin. setFont(Dictionary<java.lang.String,?> fontDictionary)
Sets the font used in rendering the Separator's heading.void
TextAreaSkin. setFont(Dictionary<java.lang.String,?> fontDictionary)
Sets the font for the text.void
TextPaneSkin. setFont(Dictionary<java.lang.String,?> fontDictionary)
Sets the font of the text.void
TextAreaSkin. setMargin(Dictionary<java.lang.String,?> marginDictionary)
Sets the amount of space between the edge of the TextArea and its text.void
TextPaneSkin. setMargin(Dictionary<java.lang.String,?> marginDictionary)
Sets the amount of space between the edge of the TextPane and its Document.void
RulerSkin. setMarkerInsets(Dictionary<java.lang.String,?> insets)
void
BoxPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the BoxPane and its components.void
CardPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the CardPane and its content.void
FillPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the FillPane and its components.void
FlowPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the FlowPane and its components.void
GridPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the padding that will be reserved around the grid pane during layout.void
SeparatorSkin. setPadding(Dictionary<java.lang.String,?> paddingDictionary)
Sets the amount of space to leave around the Separator's heading, and above and below the entire component.void
StackPaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the StackPane and its components.void
TablePaneSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space that will be reserved around the inside edges of the table pane. -
Uses of Dictionary in org.apache.pivot.wtk.skin.terra
Methods in org.apache.pivot.wtk.skin.terra with parameters of type Dictionary Modifier and Type Method Description void
TerraAccordionSkin. setButtonFont(Dictionary<java.lang.String,?> buttonFont)
void
TerraAccordionSkin. setButtonPadding(Dictionary<java.lang.String,?> buttonPadding)
void
TerraListViewSkin. setCheckboxPadding(Dictionary<java.lang.String,?> checkboxPadding)
void
TerraCalendarButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraCalendarSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraCheckboxSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraColorChooserButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraGaugeSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraLinkButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraListButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraListViewSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraMenuBarSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraMenuButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraMenuSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraMeterSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraPushButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraRadioButtonSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraSpinnerSkin. setFont(Dictionary<java.lang.String,?> fontDictionary)
void
TerraSuggestionPopupSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraTableViewHeaderSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraTableViewSkin. setFont(Dictionary<java.lang.String,?> font)
void
TerraTextInputSkin. setFont(Dictionary<java.lang.String,?> fontDict)
void
TerraTreeViewSkin. setFont(Dictionary<java.lang.String,?> fontDictionary)
void
TerraFormSkin. setLabelFont(Dictionary<java.lang.String,?> fontDict)
void
TerraFormSkin. setMessageFont(Dictionary<java.lang.String,?> fontDict)
void
TerraAccordionSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraCalendarButtonSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraColorChooserButtonSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraExpanderSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraFormSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraFrameSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraGaugeSkin. setPadding(Dictionary<java.lang.String,?> padding)
Sets the amount of space to leave between the edge of the gauge area and the actual drawing.void
TerraListButtonSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraMenuButtonSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraPaletteSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraPushButtonSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraSheetSkin. setPadding(Dictionary<java.lang.String,?> padding)
void
TerraTextInputSkin. setPadding(Dictionary<java.lang.String,?> paddingDictionary)
void
TerraExpanderSkin. setTitleBarFont(Dictionary<java.lang.String,?> titleBarFont)
void
TerraPaletteSkin. setTitleFont(Dictionary<java.lang.String,?> font)
Sets the font used in rendering the titlebar text. -
Uses of Dictionary in org.apache.pivot.xml
Classes in org.apache.pivot.xml that implement Dictionary Modifier and Type Class Description class
Element.ElementDictionary
Dictionary representing the attributes declared by this element.class
Element.NamespaceDictionary
Dictionary representing the namespaces declared by this element.
-