| Package | Description |
|---|---|
| com.codename1.cloud |
Provides cloud related services such as storage, binding widgets to the cloud seamlessly so they can be persisted
easily.
|
| com.codename1.components |
Generic elaborate components that make use of both UI elements and storage.
|
| com.codename1.ui |
Main widget package containing the component/container "composite" similar
both in terminology and design to Swing/AWT.
|
| com.codename1.ui.list |
Lists are highly customizable and serve as the basis for
ComboBox and
other components (such as carousels etc) they employ a similar MVC approach to
Swing including the renderer pattern, notice that we strongly
discourage usage of lists...ListCellRenderer
allows us to customize the appearance of a list entry, it works as a
"rubber stamp" by drawing the rendered component and discarding its state thus
allowing very large lists with very little component state overhead. |
| Modifier and Type | Method and Description |
|---|---|
void |
CloudListModel.addSelectionListener(SelectionListener l)
Deprecated.
Invoked to indicate interest in future selection events
|
void |
CloudListModel.removeSelectionListener(SelectionListener l)
Deprecated.
Invoked to indicate no further interest in future selection events
|
| Modifier and Type | Class and Description |
|---|---|
class |
ButtonList
An abstract base class for a list of buttons.
|
class |
CheckBoxList
A list of checkboxes.
|
class |
RadioButtonList
A list of Radio buttons that can be managed as a single component.
|
class |
SwitchList
A list of switches.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Tabs.addSelectionListener(SelectionListener listener)
Adds a selection listener to the tabs.
|
void |
List.addSelectionListener(SelectionListener l)
Invoked to indicate interest in future selection events
|
void |
Tabs.removeSelectionListener(SelectionListener listener)
Removes a selection Listener from the tabs
|
void |
List.removeSelectionListener(SelectionListener l)
Invoked to indicate no further interest in future selection events
|
| Modifier and Type | Method and Description |
|---|---|
void |
ListModel.addSelectionListener(SelectionListener l)
Invoked to indicate interest in future selection events
|
void |
FilterProxyListModel.addSelectionListener(SelectionListener l)
Invoked to indicate interest in future selection events
|
void |
DefaultListModel.addSelectionListener(SelectionListener l)
Invoked to indicate interest in future selection events
|
void |
ListModel.removeSelectionListener(SelectionListener l)
Invoked to indicate no further interest in future selection events
|
void |
FilterProxyListModel.removeSelectionListener(SelectionListener l)
Invoked to indicate no further interest in future selection events
|
void |
DefaultListModel.removeSelectionListener(SelectionListener l)
Invoked to indicate no further interest in future selection events
|
Copyright © 2021. All rights reserved.