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

Packages that use List
org.apache.pivot.charts Contains a collection of components for use in charting applications. 
org.apache.pivot.charts.content Contains classes representing chart data. 
org.apache.pivot.charts.skin Contains abstract base classes for chart view skins. 
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.io Contains classes related to input/output operations. 
org.apache.pivot.json Contains classes that facilitate interaction with JSON and JSON-like data structures. 
org.apache.pivot.serialization Contains a set of classes for use in data serialization. 
org.apache.pivot.sql Contains classes for working with SQL data. 
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 List in org.apache.pivot.charts
 

Methods in org.apache.pivot.charts that return List
 List<?> ChartView.getChartData()
           
 

Methods in org.apache.pivot.charts with parameters of type List
 void ChartViewListener.chartDataChanged(ChartView chartView, List<?> previousChartData)
          Fired when a chart view's data changes.
 void ChartView.setChartData(List<?> chartData)
           
 

Constructors in org.apache.pivot.charts with parameters of type List
ChartView(String seriesNameKey, List<?> chartData)
           
 

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

Classes in org.apache.pivot.charts.content that implement List
 class ValueSeries<T>
          Represents series data for value chart views.
 

Uses of List in org.apache.pivot.charts.skin
 

Methods in org.apache.pivot.charts.skin with parameters of type List
 void ChartViewSkin.chartDataChanged(ChartView chartView, List<?> previousChartData)
           
 

Uses of List in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement List
 class ArrayList<T>
          Implementation of the List interface that is backed by an array.
 class EnumList<E extends Enum<E>>
          Implementation of the List interface that is backed by an enum.
 class LinkedList<T>
          Implementation of the List interface that is backed by a linked list.
 

Methods in org.apache.pivot.collections with parameters of type List
 void ListListener.comparatorChanged(List<T> list, Comparator<T> previousComparator)
          Called when a list's comparator has changed.
 void ListListener.Adapter.comparatorChanged(List<T> list, Comparator<T> previousComparator)
           
 void List.ListListenerList.comparatorChanged(List<T> list, Comparator<T> previousComparator)
           
 void ListListener.itemInserted(List<T> list, int index)
          Called when an item has been inserted into a list.
 void ListListener.Adapter.itemInserted(List<T> list, int index)
           
 void List.ListListenerList.itemInserted(List<T> list, int index)
           
 void ListListener.itemsRemoved(List<T> list, int index, Sequence<T> items)
          Called when items have been removed from a list.
 void ListListener.Adapter.itemsRemoved(List<T> list, int index, Sequence<T> items)
           
 void List.ListListenerList.itemsRemoved(List<T> list, int index, Sequence<T> items)
           
 void ListListener.itemUpdated(List<T> list, int index, T previousItem)
          Called when a list item has been updated.
 void ListListener.Adapter.itemUpdated(List<T> list, int index, T previousItem)
           
 void List.ListListenerList.itemUpdated(List<T> list, int index, T previousItem)
           
 void ListListener.listCleared(List<T> list)
          Called when list data has been reset.
 void ListListener.Adapter.listCleared(List<T> list)
           
 void List.ListListenerList.listCleared(List<T> list)
           
 

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

Classes in org.apache.pivot.collections.adapter that implement List
 class ListAdapter<T>
          Implementation of the List interface that is backed by an instance of List.
 

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

Classes in org.apache.pivot.collections.concurrent that implement List
 class SynchronizedList<T>
          Synchronized implementation of the List interface.
 

Constructors in org.apache.pivot.collections.concurrent with parameters of type List
SynchronizedList(List<T> list)
           
 

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

Classes in org.apache.pivot.collections.immutable that implement List
 class ImmutableList<T>
          Unmodifiable implementation of the List interface.
 

Constructors in org.apache.pivot.collections.immutable with parameters of type List
ImmutableList(List<T> list)
           
 

Uses of List in org.apache.pivot.io
 

Classes in org.apache.pivot.io that implement List
 class FileList
          Collection representing a list of files.
 

Uses of List in org.apache.pivot.json
 

Methods in org.apache.pivot.json that return List
static List<?> JSONSerializer.parseList(String json)
          Converts a JSON value to a list.
 

Uses of List in org.apache.pivot.serialization
 

Methods in org.apache.pivot.serialization that return List
 List<?> CSVSerializer.readObject(InputStream inputStream)
          Reads values from a comma-separated value stream.
 List<?> CSVSerializer.readObject(Reader reader)
          Reads values from a comma-separated value stream.
 

Methods in org.apache.pivot.serialization with parameters of type List
 void CSVSerializerListener.beginList(CSVSerializer csvSerializer, List<?> list)
          Called when the serializer has begun reading the list.
 void CSVSerializerListener.Adapter.beginList(CSVSerializer csvSerializer, List<?> list)
           
 String CSVSerializer.getMIMEType(List<?> objects)
           
 void CSVSerializer.writeObject(List<?> items, OutputStream outputStream)
          Writes values to a comma-separated value stream.
 void CSVSerializer.writeObject(List<?> items, Writer writer)
          Writes values to a comma-separated value stream.
 

Uses of List in org.apache.pivot.sql
 

Classes in org.apache.pivot.sql that implement List
 class ResultList
          Implementation of the List interface that is backed by a instance of ResultSet.
 

Uses of List in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return List
static List<Display> ApplicationContext.getDisplays()
           
 List<?> ListButton.getListData()
          Returns the list data associated with this list button.
 List<?> ListView.getListData()
          Returns the list data.
 List<?> Spinner.getSpinnerData()
          Returns the spinner data.
 List<?> SuggestionPopup.getSuggestionData()
          Returns the list of suggestions presented by the popup.
 List<?> TableView.getTableData()
          Returns the table data.
 List<?> TreeView.getTreeData()
          Returns the tree view's data model.
 List<?> ListView.ListDataBindMapping.toListData(Object value)
          Converts a context value to list data during a Component.load(Object) operation.
 List<?> Spinner.SpinnerDataBindMapping.toSpinnerData(Object value)
          Converts a context value to spinner data during a Component.load(Object) operation.
 List<?> TableView.TableDataBindMapping.toTableData(Object value)
          Converts a context value to table data.
 

Methods in org.apache.pivot.wtk with parameters of type List
 Object Spinner.ItemBindMapping.get(List<?> spinnerData, int index)
          Retrieves the item at the given index during a Component.store(Object) operation.
 Object TableView.SelectedRowBindMapping.get(List<?> tableData, int index)
          Retrieves the value at the given index.
 Object ListView.ItemBindMapping.get(List<?> listData, int index)
          Retrieves the value at the given index during a Component.store(Object) operation.
 int Spinner.ItemBindMapping.indexOf(List<?> spinnerData, Object value)
          Returns the index of the item in the source list during a Component.load(Object) operation.
 int TableView.SelectedRowBindMapping.indexOf(List<?> tableData, Object value)
          Returns the index of the row in the source list.
 int ListView.ItemBindMapping.indexOf(List<?> listData, Object value)
          Returns the index of the item in the source list during a Component.load(Object) operation.
 void ListButtonListener.listDataChanged(ListButton listButton, List<?> previousListData)
          Called when a list button's list data has changed.
 void ListButtonListener.Adapter.listDataChanged(ListButton listButton, List<?> previousListData)
           
 void ListViewListener.listDataChanged(ListView listView, List<?> previousListData)
          Called when a list view's list data has changed.
 void ListViewListener.Adapter.listDataChanged(ListView listView, List<?> previousListData)
           
 void ListButton.setListData(List<?> listData)
          Sets the list button's list data.
 void ListView.setListData(List<?> listData)
          Sets the list data.
 void Spinner.setSpinnerData(List<?> spinnerData)
          Sets the spinner data.
 void SuggestionPopup.setSuggestionData(List<?> suggestionData)
          Sets the list of suggestions presented by the popup.
 void TableView.setTableData(List<?> tableData)
          Sets the table data.
 void TreeView.setTreeData(List<?> treeData)
          Sets the tree data.
 void SpinnerListener.spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
          Called when a spinner's data has changed.
 void SpinnerListener.Adapter.spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
           
 void SuggestionPopupListener.suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
          Called when a suggestion popup's suggestions have changed.
 void SuggestionPopupListener.Adapter.suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
           
 void TableViewListener.tableDataChanged(TableView tableView, List<?> previousTableData)
          Called when a table view's table data has changed.
 void TableViewListener.Adapter.tableDataChanged(TableView tableView, List<?> previousTableData)
           
 void TreeViewListener.treeDataChanged(TreeView treeView, List<?> previousTreeData)
          Called when a tree view's data has changed.
 void TreeViewListener.Adapter.treeDataChanged(TreeView treeView, List<?> previousTreeData)
           
 Object Spinner.SpinnerDataBindMapping.valueOf(List<?> spinnerData)
          Converts spinner data to a context value during a Component.store(Object) operation.
 Object TableView.TableDataBindMapping.valueOf(List<?> tableData)
          Converts table data to a context value.
 Object ListView.ListDataBindMapping.valueOf(List<?> listData)
          Converts list data to a context value during a Component.store(Object) operation.
 

Constructors in org.apache.pivot.wtk with parameters of type List
ListButton(List<?> listData)
          Creates a list button with no button data and the given list data.
ListButton(Object buttonData, List<?> listData)
          Creates a list button with the given button and list data.
ListView(List<?> listData)
          Creates a list view populated with the given list data.
Spinner(List<?> spinnerData)
          Creates a spinner populated with the given spinner data.
SuggestionPopup(List<?> suggestions)
           
TableView(List<?> tableData)
          Creates a new table view populated with the given table data.
TreeView(List<?> treeData)
          Creates a new TreeView with the specified tree data.
 

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

Classes in org.apache.pivot.wtk.content that implement List
 class CalendarDateSpinnerData
          Spinner data model that presents a bounded list of calendar dates.
 class NumericSpinnerData
          Spinner data model that presents a bounded list of integers.
 class TreeBranch
          Default tree branch implementation.
 

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

Methods in org.apache.pivot.wtk.skin with parameters of type List
 void ListButtonSkin.listDataChanged(ListButton listButton, List<?> previousListData)
           
 

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

Methods in org.apache.pivot.wtk.skin.terra with parameters of type List
 void TerraListViewSkin.listDataChanged(ListView listView, List<?> previousListData)
           
 void TerraSpinnerSkin.spinnerDataChanged(Spinner spinner, List<?> previousSpinnerData)
           
 void TerraSuggestionPopupSkin.suggestionDataChanged(SuggestionPopup suggestionPopup, List<?> previousSuggestionData)
           
 void TerraTableViewSkin.tableDataChanged(TableView tableView, List<?> previousTableData)
           
 void TerraTreeViewSkin.treeDataChanged(TreeView treeView, List<?> previousTreeData)
           
 

Uses of List in org.apache.pivot.xml
 

Classes in org.apache.pivot.xml that implement List
 class Element
          Node class representing an XML element.
 

Methods in org.apache.pivot.xml that return List
static List<Element> XML.getElements(Element root, String path, String name)
          Returns the sub-elements of a descendant of root whose tag names match the given name.
 List<Element> Element.getElements(String name)
          Returns the sub-elements of of this element whose tag names match the given name.