diff options
Diffstat (limited to 'source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java')
| -rw-r--r--[-rwxr-xr-x] | source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java b/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java index ef20a1a..bb71cd8 100755..100644 --- a/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java +++ b/source/com/c2kernel/gui/tabs/collection/CollectionHistoryWindow.java @@ -48,17 +48,16 @@ public class CollectionHistoryWindow extends JFrame { private class HistoryTableModel extends AbstractTableModel implements EntityProxyObserver {
ItemProxy item;
- ArrayList collEvents, collEventData;
+ ArrayList<Object> collEvents, collEventData;
Collection coll;
public HistoryTableModel(ItemProxy item, Collection coll) {
this.item = item;
this.coll = coll;
- collEvents = new ArrayList();
- collEventData = new ArrayList();
+ collEvents = new ArrayList<Object>();
+ collEventData = new ArrayList<Object>();
item.subscribe(this, ClusterStorage.HISTORY, true);
}
public int getColumnCount() {
- // TODO Auto-generated method stub
return 4;
}
@@ -72,7 +71,6 @@ public class CollectionHistoryWindow extends JFrame { }
}
public int getRowCount() {
- // TODO Auto-generated method stub
return collEvents.size();
}
public Object getValueAt(int rowIndex, int columnIndex) {
|
