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.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. 
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. 
 

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 ArrayQueue<T>
          Implementation of the Queue interface that is backed by an array.
 class ArrayStack<T>
          Implementation of the Stack 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 FilteredList<T>
          Provides a filtered view of a list that can be sorted independently, but remains backed by the original data.
 class LinkedList<T>
          Implementation of the List interface that is backed by a linked list.
 class LinkedQueue<T>
          Implementation of the Queue interface that is backed by a linked list.
 class LinkedStack<T>
          Implementation of the Stack interface that is backed by a linked list.
 class MapList<K,V>
          Decorates a Map to look like a List of key/value pairs.
 

Methods in org.apache.pivot.collections that return List
 List<T> FilteredList.getSource()
          Returns the source list.
 

Methods in org.apache.pivot.collections with parameters of type List
 void List.ListListenerList.comparatorChanged(List<T> list, Comparator<T> previousComparator)
           
 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.itemInserted(List<T> list, int index)
           
 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.itemsRemoved(List<T> list, int index, Sequence<T> items)
           
 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.itemUpdated(List<T> list, int index, T previousItem)
           
 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.listCleared(List<T> list)
           
 void ListListener.listCleared(List<T> list)
          Called when list data has been reset.
 void ListListener.Adapter.listCleared(List<T> list)
           
 void FilteredList.setSource(List<T> source)
          Sets the source list.
 void FilteredListListener.sourceChanged(FilteredList<T> filteredList, List<T> previousSource)
          Called when a filtered list's source has changed.
 void FilteredListListener.Adapter.sourceChanged(FilteredList<T> filteredList, List<T> previousSource)
           
 

Constructors in org.apache.pivot.collections with parameters of type List
FilteredList(List<T> source)
           
 

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 java.util.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.serialization
 

Methods in org.apache.pivot.serialization that return List
static List<?> JSONSerializer.getList(Object root, String path)
          Returns the value at the given path as a list.
static List<?> JSONSerializer.parseList(String json)
          Converts a JSON value to a 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
 String CSVSerializer.getMIMEType(List<?> objects)
           
static String JSONSerializer.toString(List<?> value)
          Converts a list to a JSON string representation.
 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.util
 

Methods in org.apache.pivot.util that return List
 List<?> Resources.getList(String key)
           
 

Uses of List in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return List
 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<?> TableView.getTableData()
          Returns the table data.
 List<?> TreeView.getTreeData()
          Returns the tree view's data model.
 

Methods in org.apache.pivot.wtk with parameters of type List
 void ListButtonListener.listDataChanged(ListButton listButton, List<?> previousListData)
          Called when a list button's list data has changed.
 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 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 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)
           
 

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.
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
 

Fields in org.apache.pivot.wtk.skin.terra declared as List
protected  List<TerraTreeViewSkin.NodeInfo> TerraTreeViewSkin.BranchInfo.children
           
 

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 TerraTableViewSkin.tableDataChanged(TableView tableView, List<?> previousTableData)
           
 void TerraTreeViewSkin.treeDataChanged(TreeView treeView, List<?> previousTreeData)
           
 

Constructors in org.apache.pivot.wtk.skin.terra with parameters of type List
TerraTreeViewSkin.BranchInfo(TreeView treeView, TerraTreeViewSkin.BranchInfo parent, List<Object> data)