| org.netbeans.microedition.lcdui.TableModel
All known Subclasses: org.netbeans.microedition.lcdui.SimpleTableModel,
TableModel | public interface TableModel (Code) | | TableModel interface specifies methods, which Table component
uses to get data it shows. The following example shows how
the model is being used in Table:
TableModel myTableModel = new MyTableModel();
Table myTable = new Table();
myTable.setModel(myTableModel);
author: breh |
addTableModelListener | public void addTableModelListener(TableModelListener listener)(Code) | | Adds TableModelListener to this model.
Parameters: listener - listener to be added |
getColumnCount | public int getColumnCount()(Code) | | Gets the number of columns of the table
column count |
getColumnName | public String getColumnName(int column)(Code) | | Gets the name of the given column. The given index
should never exceed the number specified by the
getColumnCount() method.
Parameters: column - index of column of which the name should be returned. May return null. The name of the column |
getRowCount | public int getRowCount()(Code) | | Gets the number of rows of the table
row count |
getValue | public Object getValue(int column, int row)(Code) | | Gets the value of a table cell at a specified location. For example
getValue(2,3) returns a cell value from 2nd column and 3rd
row.
The given column and row should never exceed the numbers specified by the
getColumnCount() or getRowCount() methods.
Parameters: column - column index of the value Parameters: row - row index of the value value for the given cell coordinates. May return null if there is no value. |
isUsingHeaders | public boolean isUsingHeaders()(Code) | | Decides wheter this table is using headers (column names).
true if the column names are being supplied and should be visualized, false otherwise |
removeTableModelListener | public void removeTableModelListener(TableModelListener listener)(Code) | | Removes TableModelListener from this model.
Parameters: listener - listener to be removed |
|
|