Class BulkCheckoutPanel.EntryModel
- java.lang.Object
-
- javax.swing.table.AbstractTableModel
-
- com.logicaldoc.enterprise.bulkcheckout.BulkCheckoutPanel.EntryModel
-
- All Implemented Interfaces:
Serializable
,TableModel
- Enclosing class:
- BulkCheckoutPanel
public class BulkCheckoutPanel.EntryModel extends AbstractTableModel
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EntryModel(BulkCheckoutPanel applet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumnCount()
String
getColumnName(int col)
int
getRowCount()
Object
getValueAt(int row, int col)
boolean
isCellEditable(int row, int col)
void
setValueAt(Object value, int row, int col)
-
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, removeTableModelListener
-
-
-
-
Constructor Detail
-
EntryModel
public EntryModel(BulkCheckoutPanel applet)
-
-
Method Detail
-
getColumnName
public String getColumnName(int col)
- Specified by:
getColumnName
in interfaceTableModel
- Overrides:
getColumnName
in classAbstractTableModel
-
getRowCount
public int getRowCount()
-
getColumnCount
public int getColumnCount()
-
getValueAt
public Object getValueAt(int row, int col)
-
isCellEditable
public boolean isCellEditable(int row, int col)
- Specified by:
isCellEditable
in interfaceTableModel
- Overrides:
isCellEditable
in classAbstractTableModel
-
setValueAt
public void setValueAt(Object value, int row, int col)
- Specified by:
setValueAt
in interfaceTableModel
- Overrides:
setValueAt
in classAbstractTableModel
-
-