Package pulse.ui.components.models
Class SelectedKeysModel
- java.lang.Object
-
- javax.swing.table.AbstractTableModel
-
- javax.swing.table.DefaultTableModel
-
- pulse.ui.components.models.SelectedKeysModel
-
- All Implemented Interfaces:
Serializable
,TableModel
public class SelectedKeysModel extends DefaultTableModel
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.swing.table.DefaultTableModel
columnIdentifiers, dataVector
-
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
-
-
Constructor Summary
Constructors Constructor Description SelectedKeysModel(List<NumericPropertyKeyword> keys, NumericPropertyKeyword[] mandatorySelection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addElement(NumericPropertyKeyword key)
boolean
contains(NumericPropertyKeyword key)
int
getColumnCount()
List<NumericPropertyKeyword>
getData()
NumericPropertyKeyword
getElementAt(int index)
int
getRowCount()
Object
getValueAt(int i, int i1)
boolean
removeElement(NumericPropertyKeyword key)
void
update()
void
update(List<NumericPropertyKeyword> keys)
-
Methods inherited from class javax.swing.table.DefaultTableModel
addColumn, addColumn, addColumn, addRow, addRow, convertToVector, convertToVector, getColumnName, getDataVector, insertRow, insertRow, isCellEditable, moveRow, newDataAvailable, newRowsAdded, removeRow, rowsRemoved, setColumnCount, setColumnIdentifiers, setColumnIdentifiers, setDataVector, setDataVector, setNumRows, setRowCount, setValueAt
-
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, removeTableModelListener
-
-
-
-
Constructor Detail
-
SelectedKeysModel
public SelectedKeysModel(List<NumericPropertyKeyword> keys, NumericPropertyKeyword[] mandatorySelection)
-
-
Method Detail
-
update
public final void update()
-
update
public void update(List<NumericPropertyKeyword> keys)
-
getRowCount
public int getRowCount()
- Specified by:
getRowCount
in interfaceTableModel
- Overrides:
getRowCount
in classDefaultTableModel
-
getColumnCount
public int getColumnCount()
- Specified by:
getColumnCount
in interfaceTableModel
- Overrides:
getColumnCount
in classDefaultTableModel
-
getValueAt
public Object getValueAt(int i, int i1)
- Specified by:
getValueAt
in interfaceTableModel
- Overrides:
getValueAt
in classDefaultTableModel
-
addElement
public void addElement(NumericPropertyKeyword key)
-
contains
public boolean contains(NumericPropertyKeyword key)
-
getData
public List<NumericPropertyKeyword> getData()
-
getElementAt
public NumericPropertyKeyword getElementAt(int index)
-
removeElement
public boolean removeElement(NumericPropertyKeyword key)
-
-