| java.lang.Object com.javujavu.javux.wings.table.DefaultTableModel
DefaultTableModel | public class DefaultTableModel (Code) | | This class uses a Vector of object to store the
rows of a table. A row can be a Vector or an array of
items. Override this class to get custom table model.
This class is not thread safe
synchronization is provided by WingTable
|
DefaultTableModel | public DefaultTableModel()(Code) | | |
getRowCount | public int getRowCount()(Code) | | |
getValueAt | public Object getValueAt(int rowIndex, int columnIndex)(Code) | | |
insertRow | public void insertRow(int rowIndex, Object row)(Code) | | |
isDarkRow | public boolean isDarkRow(int row)(Code) | | |
removeRow | public void removeRow(int rowIndex)(Code) | | |
setRowCount | public void setRowCount(int rowCount)(Code) | | |
setValueAt | public void setValueAt(Object aValue, int rowIndex, int columnIndex)(Code) | | |
|
|