| java.lang.Object javax.swing.table.AbstractTableModel com.jeta.swingbuilder.gui.beanmgr.BeansModel
BeansModel | public class BeansModel extends AbstractTableModel (Code) | | This class is the table model for the registered Java beans in the builder.
author: Jeff Tassin |
ICON_COLUMN | final public static int ICON_COLUMN(Code) | | column definitions
|
NAME_COLUMN | final public static int NAME_COLUMN(Code) | | |
SCROLLABLE_COLUMN | final public static int SCROLLABLE_COLUMN(Code) | | |
BeansModel | public BeansModel()(Code) | | ctor.
|
getColumnClass | public Class getColumnClass(int column)(Code) | | the type of column at a given index |
getColumnCount | public int getColumnCount()(Code) | | the number of columns in this model |
getColumnName | public String getColumnName(int column)(Code) | | the name of a column at a given index |
getRowCount | public int getRowCount()(Code) | | the number of rows objects in this model |
getValueAt | public Object getValueAt(int row, int column)(Code) | | the column value at the given row |
isCellEditable | public boolean isCellEditable(int rowIndex, int columnIndex)(Code) | | |
reload | public void reload()(Code) | | Reload the model
|
removeAll | public void removeAll()(Code) | | Remove all data items from this model
|
removeRow | public void removeRow(int row)(Code) | | Removes a beaninfor object from the table
|
setValueAt | public void setValueAt(Object aValue, int rowIndex, int columnIndex)(Code) | | |
|
|