Re: customizing JTable
On Sun, 06 Jul 2008 12:52:23 -0400, Lew wrote:
If you provide an SSCCE maybe I'll get less confused.
Kinda long:
thufir@arrakis:~$
thufir@arrakis:~$ cat NetBeansProjects/arrays/src/a00720398/model/
CarTableModel.java
package a00720398.model;
import java.sql.*;
import java.util.*;
import java.util.logging.*;
import javax.swing.table.*;
@SuppressWarnings({"serial"})
public class CarTableModel extends DefaultTableModel {
private static final TableModel INSTANCE = new CarTableModel();
private CarTableModel() {
columnIdentifiers = convertToVector(CarTableData.getInstance
().getColumnIdentifiers());
dataVector = convertToVector(CarTableData.getInstance
().getDataVector());
}
public static TableModel getInstance() {
return INSTANCE;
}
}
thufir@arrakis:~$
thufir@arrakis:~$ cat NetBeansProjects/arrays/src/a00720398/model/
CarTableData.java
package a00720398.model;
import java.sql.*;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
public class CarTableData {
private static final CarTableData INSTANCE = new CarTableData();
private String[] columnIdentifiers =
{"First Name", "Last Name", "Sport", "# of Years",
"Vegetarian"};
private Object[][] dataVector = {
{"Mary", "Campione", "Snowboarding", new Integer(5), new Boolean
(false)},
{"Alison", "Huml", "Rowing", new Integer(3), new Boolean(true)},
{"Kathy", "Walrath", "Knitting", new Integer(2), new Boolean
(false)},
{"Sharon", "Zakhour", "Speed reading", new Integer(20), new
Boolean(true)},
{"Philip", "Milne", "Pool", new Integer(10), new Boolean(false)}};
private CarTableData() {
}
public static CarTableData getInstance() {
return INSTANCE;
}
public String[] getColumnIdentifiers() {
return columnIdentifiers;
}
public Object[][] getDataVector() {
return dataVector;
}
}
thufir@arrakis:~$
which allows:
carTable = new javax.swing.JTable();
carTable.setModel(CarTableModel.getInstance());
and displays data. While not dynamic, it at least does what I expect it
to. I think that the listeners and fire* methods will be the bigger
challenge, first I might hook it up to MySQL.
Thanks, the questions, comments and critiques helped me think it through
a better and led to approach a simpler version first.
-Thufir