1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/* GraphInvariantTableModel.java
* =========================================================================
* This file is part of the GrInvIn project - http://www.grinvin.org
*
* Copyright (C) 2005-2008 Universiteit Gent
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* A copy of the GNU General Public License can be found in the file
* LICENSE.txt provided with the source distribution of this program (see
* the META-INF directory in the source jar). This license can also be
* found on the GNU website at http://www.gnu.org/licenses/gpl.html.
*
* If you did not receive a copy of the GNU General Public License along
* with this program, contact the lead developer, or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.grinvin.list;
import org.grinvin.list.invariants.InvariantListModelListener;
import org.grinvin.list.invariants.InvariantList;
import org.grinvin.list.invariants.InvariantListModel;
import java.util.ArrayList;
import java.util.List;
import javax.swing.event.ListDataEvent;
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
import javax.swing.table.TableModel;
import org.grinvin.invariants.Invariant;
import org.grinvin.invariants.InvariantValue;
import org.grinvin.list.graphs.GraphList;
import org.grinvin.list.graphs.GraphListModel;
import org.grinvin.list.graphs.GraphListModelContentsListener;
/**
* {@link TableModel} to be used in {@link org.grinvin.gui.components.GraphTableComponent}. This class is
* only used to represent the model for this component. A data structure that
* combines both a {@link GraphListModel} and an {@link InvariantListModel} is
* {@link GraphInvariantListModel}.
*/
public class GraphInvariantTableModel implements TableModel {
//
//private GraphInvariantListModel graphInvariantList;
private GraphListModel graphListModel;
private InvariantListModel invariantListModel;
//
private List<TableModelListener> listeners;
//
public GraphInvariantTableModel(GraphListModel graphListModel, InvariantListModel invariantListModel) {
this.graphListModel = graphListModel;
this.invariantListModel = invariantListModel;
this.listeners = new ArrayList<TableModelListener>();
graphListModel.addGraphListModelContentsListener(new GraphListModelDelegateListener(this));
invariantListModel.addInvariantListModelListener(new InvariantListModelDelegateListener(this));
}
public GraphList getGraphList() {
return graphListModel;
}
private InvariantList getInvariantList() {
return invariantListModel;
}
/***** implement TableModel *****/
//
public void addTableModelListener(TableModelListener listener) {
listeners.add(listener);
}
//
public Class getColumnClass(int col) {
return InvariantValue.class;
}
//column 0 contains the name of the graph
public int getColumnCount() {
return getInvariantList().size();
}
//
public String getColumnName(int column) {
return getInvariantList().get(column).getName();
}
//
public int getRowCount() {
return getGraphList().size();
}
//
public Object getValueAt(int row, int column) {
return getGraphList().get(row).getInvariantNow(getInvariantList().get(column));
}
//
public boolean isCellEditable(int row, int col) {
return false;
}
//
public void removeTableModelListener(TableModelListener listener) {
listeners.remove(listener);
}
//
public void setValueAt(Object value, int row, int col) {
}
/***** implement TableModel *****/
//
public void removeColumn(final int column) {
if (getColumnCount() > column) {
getInvariantList().remove(column);
//TODO: keep changecount
//changeCount++;
fireColumnRemoved(column, column);
}
}
//
private void fireRowAdded(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, index0, index1, TableModelEvent.ALL_COLUMNS, TableModelEvent.INSERT));
}
}
//
private void fireRowRemoved(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, index0, index1, TableModelEvent.ALL_COLUMNS, TableModelEvent.DELETE));
}
}
//
private void fireRowChanged(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, index0, index1, TableModelEvent.ALL_COLUMNS, TableModelEvent.UPDATE));
}
}
//
private void fireColumnAdded(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, TableModelEvent.HEADER_ROW));
}
}
//
private void fireColumnRemoved(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, TableModelEvent.HEADER_ROW));
}
}
//
private void fireColumnChanged(int index0, int index1) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, TableModelEvent.HEADER_ROW));
}
}
//
private void fireCellChanged(int row, int column) {
for (TableModelListener listener : listeners) {
listener.tableChanged(new TableModelEvent(this, row, row, column, TableModelEvent.UPDATE));
}
}
//
private class GraphListModelDelegateListener implements GraphListModelContentsListener {
//
private GraphInvariantTableModel tableModel;
//
public GraphListModelDelegateListener(GraphInvariantTableModel tableModel) {
this.tableModel = tableModel;
}
public void intervalAdded(ListDataEvent e) {
tableModel.fireRowAdded(e.getIndex0(), e.getIndex1());
}
public void intervalRemoved(ListDataEvent e) {
tableModel.fireRowRemoved(e.getIndex0(), e.getIndex1());
}
public void contentsChanged(ListDataEvent e) {
tableModel.fireRowChanged(e.getIndex0(), e.getIndex1());
}
public void graphInvariantComputed(int position, Invariant invariant) {
tableModel.fireCellChanged(position, getInvariantList().indexOf(invariant));
}
}
//
private static class InvariantListModelDelegateListener implements InvariantListModelListener {
//
private GraphInvariantTableModel tableModel;
//
public InvariantListModelDelegateListener(GraphInvariantTableModel tableModel) {
this.tableModel = tableModel;
}
public void intervalAdded(ListDataEvent e) {
tableModel.fireColumnAdded(e.getIndex0(), e.getIndex1());
}
public void intervalRemoved(ListDataEvent e) {
tableModel.fireColumnRemoved(e.getIndex0(), e.getIndex1());
}
public void contentsChanged(ListDataEvent e) {
tableModel.fireColumnChanged(e.getIndex0(), e.getIndex1());
}
}
}
|