Package pulse.ui.components.models
Class ParameterTableModel
- java.lang.Object
-
- javax.swing.table.AbstractTableModel
-
- pulse.ui.components.models.ParameterTableModel
-
- All Implemented Interfaces:
Serializable,TableModel
public class ParameterTableModel extends AbstractTableModel
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<NumericPropertyKeyword>elements-
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
-
-
Constructor Summary
Constructors Constructor Description ParameterTableModel(boolean extendedList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(NumericPropertyKeyword key)intgetColumnCount()List<NumericPropertyKeyword>getData()NumericPropertyKeywordgetElementAt(int index)intgetRowCount()ObjectgetValueAt(int i, int i1)voidpopulateWithAllProperties()-
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getColumnName, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAt
-
-
-
-
Field Detail
-
elements
protected List<NumericPropertyKeyword> elements
-
-
Method Detail
-
populateWithAllProperties
public final void populateWithAllProperties()
-
getRowCount
public int getRowCount()
-
getColumnCount
public int getColumnCount()
-
getValueAt
public Object getValueAt(int i, int i1)
-
contains
public boolean contains(NumericPropertyKeyword key)
-
getElementAt
public NumericPropertyKeyword getElementAt(int index)
-
getData
public List<NumericPropertyKeyword> getData()
-
-