2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 package org.altusmetrum.altosuilib_11;
20 import javax.swing.table.*;
22 public class AltosFlightInfoTableModel extends AbstractTableModel {
23 final static private String[] columnNames = {"Field", "Value"};
27 private String[][] data;
29 public int getColumnCount() { return cols; }
30 public int getRowCount() { return rows; }
31 public String getColumnName(int col) { return columnNames[col & 1]; }
33 public Object getValueAt(int row, int col) {
34 if (row >= rows || col >= cols)
36 return data[row][col];
42 for (int i = 0; i < cols / 2; i++)
48 for (int c = 0; c < cols; c++)
49 for (int r = 0; r < rows; r++)
51 fireTableDataChanged();
54 public void addRow(int col, String name, String value) {
55 if (current_row[col] < rows) {
56 data[current_row[col]][col * 2] = name;
57 data[current_row[col]][col * 2 + 1] = value;
62 public void finish() {
63 for (int c = 0; c < cols / 2; c++)
64 while (current_row[c] < rows)
66 fireTableDataChanged();
69 public AltosFlightInfoTableModel (int in_rows, int in_cols) {
72 data = new String[rows][cols];
73 current_row = new int[in_cols];