| Package | Description |
|---|---|
| com.codename1.properties |
High level property objects that allow us to replace getters/setters in business objects with more convenient
storage/parsing mappings while retaining type safety.
|
| com.codename1.ui.table |
Table component for editing and viewing tabular data and arranging Codename One components in a tabular form
|
| Modifier and Type | Class and Description |
|---|---|
static class |
UiBinding.BoundTableModel
Implements table model binding, this is implemented as a class to allow
additional features such as adding/removing rows
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractTableModel
This abstract class extends table model with various capabilities such
as type information etc.
|
class |
DefaultTableModel
A default implementation of the table model based on a two dimensional array.
|
class |
SortableTableModel
A proxy that wraps the table model providing sorting API that can be leveraged by the table
|
| Modifier and Type | Method and Description |
|---|---|
TableModel |
Table.getModel()
Returns the model instance
|
TableModel |
SortableTableModel.getUnderlying()
Returns the underlying table model
|
| Modifier and Type | Method and Description |
|---|---|
void |
Table.setModel(TableModel model)
Replaces the underlying model
|
| Constructor and Description |
|---|
SortableTableModel(int column,
boolean asc,
TableModel model,
Comparator cmp)
Sorts a table based on the given column
|
Table(TableModel model)
Create a table with a new model
|
Table(TableModel model,
boolean includeHeader)
Create a table with a new model
|
Copyright © 2022. All rights reserved.