Closedown

This commit is contained in:
boccioli_m
2015-06-08 11:29:06 +02:00
parent 436a395643
commit 09dce8d283
9 changed files with 5 additions and 5 deletions

View File

@@ -206,12 +206,12 @@ jTable1.setValueAt(icon, rowD, COL_ICON);
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
String sDate = dateFormat.format(date);
Object[] columnNames = {"Time", "Device", "Test", "Result", "Status"};
Object[] columnNames = {"Select", "Time", "Device", "Test", "Result", "Status", ""};
Object[][] data = {
{sDate, "LS", "Check Status", "No comm", "Pending"},
{sDate, "RS", "Calibrate", "Calibration done", "Pending"},
{sDate, "MWD", "Display Test", "Sequence terminated", "Pending"},
{sDate, "FIXL", "Lamp Test", "Failure", "Pending"}
{false, sDate, "LS", "Check Status", "No comm", "Pending"},
{false, sDate, "RS", "Calibrate", "Calibration done", "Pending"},
{false, sDate, "MWD", "Display Test", "Sequence terminated", "Pending"},
{false, sDate, "FIXL", "Lamp Test", "Failure", "Pending"}
};
DefaultTableModel model = new DefaultTableModel(data, columnNames);