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.
21 import java.awt.event.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.LinkedBlockingQueue;
31 public class AltosFlightInfoTableModel extends AbstractTableModel {
32 final static private String[] columnNames = {"Field", "Value"};
36 private String[][] data;
38 public int getColumnCount() { return cols; }
39 public int getRowCount() { return rows; }
40 public String getColumnName(int col) { return columnNames[col & 1]; }
42 public Object getValueAt(int row, int col) {
43 if (row >= rows || col >= cols)
45 return data[row][col];
51 for (int i = 0; i < cols / 2; i++)
57 for (int c = 0; c < cols; c++)
58 for (int r = 0; r < rows; r++)
60 fireTableDataChanged();
63 public void addRow(int col, String name, String value) {
64 if (current_row[col] < rows) {
65 data[current_row[col]][col * 2] = name;
66 data[current_row[col]][col * 2 + 1] = value;
71 public void finish() {
72 for (int c = 0; c < cols / 2; c++)
73 while (current_row[c] < rows)
75 fireTableDataChanged();
78 public AltosFlightInfoTableModel (int in_rows, int in_cols) {
81 data = new String[rows][cols];
82 current_row = new int[in_cols];