public class ChangesetDiscussionTableModel extends AbstractTableModel
Modifier and Type | Field and Description |
---|---|
private List<ChangesetDiscussionComment> |
data |
listenerList
Constructor and Description |
---|
ChangesetDiscussionTableModel() |
Modifier and Type | Method and Description |
---|---|
int |
getColumnCount() |
int |
getRowCount() |
Object |
getValueAt(int rowIndex,
int columnIndex) |
void |
populate(List<ChangesetDiscussionComment> list)
Populates the model with the discussion of a changeset.
|
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getColumnName, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAt
private final transient List<ChangesetDiscussionComment> data
public ChangesetDiscussionTableModel()
public int getRowCount()
public int getColumnCount()
public Object getValueAt(int rowIndex, int columnIndex)
public void populate(List<ChangesetDiscussionComment> list)
list
- the changeset discussion.