| java.lang.Object fr.aliacom.common.ui.table.TableModel
TableModel | final public class TableModel implements PropertyChangeListener(Code) | | TableModel class used by all ITable implementations.
The model stores its data in an ArrayList of
java beans.
Each "column" in the model is a property of the JavaBean.
The mapping between properties and columns in done by the
fr.aliacom.common.ui.table.BeanPropertiesMapping .
author: tom author: (c) 2001, 2003 Thomas Cataldo |
Constructor Summary | |
public | TableModel() Creates a tableModel. |
TableModel | public TableModel()(Code) | | Creates a tableModel.
The column model will be initialized by the form parsing process.
|
getColumnCount | public int getColumnCount()(Code) | | |
getRow | public Object getRow(int rowIndex)(Code) | | Returns the JavaBean displayed at a given row.
Parameters: rowIndex - Object the javaBean presented at rowIndex |
getRowCount | public int getRowCount()(Code) | | |
getValueAt | public Object getValueAt(int row, int column)(Code) | | |
removeAll | public void removeAll()(Code) | | |
setValueAt | public void setValueAt(Object value, int row, int column)(Code) | | |
|
|