Interface | Description |
---|---|
CellRenderer<T> | Deprecated
this interface was added for ContainerList which is now deprecated.
|
ListCellRenderer<T> |
A "rubber stamp" tool that allows us to extract a component (often the same
component instance for all invocations) that is initialized to the value
of the current item extracted from the model, this component is drawn on the
list and discarded.
|
ListModel<T> |
Represents the data structure of the list, thus allowing a list to
represent any potential data source by referencing different implementations of this
interface, notice that
we strongly
discourage usage of lists..
|
MultipleSelectionListModel<T> |
Events
ListModel to support multiple selection. |
Class | Description |
---|---|
ContainerList | Deprecated
the performance of ContainerList is worse than the performance of List or Container.
|
DefaultListCellRenderer<T> |
Default implementation of the renderer based on a label see the
ListCellRenderer
for more information about the use and purpose of this class |
DefaultListModel<T> |
Default implementation of the list model based on a
List of elements. |
FilterProxyListModel<T> |
This class allows filtering/sorting a list model dynamically using a text field
|
GenericListCellRenderer<T> |
The generic list cell renderer can display containers or arbitrary Codename One components
as items in a list, notice that
we strongly
discourage usage of lists..
|
MultiList |
A list with a
MultiButton renderer, notice that
we strongly
discourage usage of lists.. |