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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 package org.altusmetrum.altosuilib_13;
21 import javax.swing.table.*;
23 public class AltosFlightInfoTableModel extends AbstractTableModel {
24 final static private String[] columnNames = {"Field", "Value"};
28 private String[][] data;
30 public int getColumnCount() { return cols; }
31 public int getRowCount() { return rows; }
32 public String getColumnName(int col) { return columnNames[col & 1]; }
34 public Object getValueAt(int row, int col) {
35 if (row >= rows || col >= cols)
37 return data[row][col];
43 for (int i = 0; i < cols / 2; i++)
49 for (int c = 0; c < cols; c++)
50 for (int r = 0; r < rows; r++)
52 fireTableDataChanged();
55 public void addRow(int col, String name, String value) {
56 if (current_row[col] < rows) {
57 data[current_row[col]][col * 2] = name;
58 data[current_row[col]][col * 2 + 1] = value;
63 public void finish() {
64 for (int c = 0; c < cols / 2; c++)
65 while (current_row[c] < rows)
67 fireTableDataChanged();
70 public AltosFlightInfoTableModel (int in_rows, int in_cols) {
73 data = new String[rows][cols];
74 current_row = new int[in_cols];