Package jadex.bpmn.tools.ui
Class VisualProcessViewPanel.HistoryModel
- java.lang.Object
-
- javax.swing.table.AbstractTableModel
-
- jadex.bpmn.tools.ui.VisualProcessViewPanel.HistoryModel
-
- All Implemented Interfaces:
java.io.Serializable
,javax.swing.table.TableModel
- Enclosing class:
- VisualProcessViewPanel
protected class VisualProcessViewPanel.HistoryModel extends javax.swing.table.AbstractTableModel
List model for history.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String[]
colnames
protected java.util.List<ProcessThreadInfo>
historyinfos
The previous process thread steps.
-
Constructor Summary
Constructors Constructor Description HistoryModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addValue(int idx, ProcessThreadInfo pti)
void
clear()
int
getColumnCount()
java.lang.String
getColumnName(int column)
int
getRowCount()
java.lang.Object
getValueAt(int row, int column)
-
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAt
-
-
-
-
Field Detail
-
colnames
protected java.lang.String[] colnames
-
historyinfos
protected java.util.List<ProcessThreadInfo> historyinfos
The previous process thread steps.
-
-
Method Detail
-
getColumnName
public java.lang.String getColumnName(int column)
- Specified by:
getColumnName
in interfacejavax.swing.table.TableModel
- Overrides:
getColumnName
in classjavax.swing.table.AbstractTableModel
-
getColumnCount
public int getColumnCount()
-
getRowCount
public int getRowCount()
-
getValueAt
public java.lang.Object getValueAt(int row, int column)
-
addValue
public void addValue(int idx, ProcessThreadInfo pti)
-
clear
public void clear()
-
-