jsystem.treeui
Class TestReportModel

java.lang.Object
  extended byjavax.swing.table.AbstractTableModel
      extended byjavax.swing.table.DefaultTableModel
          extended byjsystem.treeui.TestReportModel
All Implemented Interfaces:
Serializable, TableModel

public class TestReportModel
extends DefaultTableModel

TestReportModel This class implements the table model

See Also:
Serialized Form

Field Summary
 
Fields inherited from class javax.swing.table.DefaultTableModel
columnIdentifiers, dataVector
 
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
 
Constructor Summary
TestReportModel()
           
 
Method Summary
 int addCommand(String command)
           
 void addStatus(int index, boolean success, boolean bold)
           
 void clearModel()
           
 int getColumnCount()
           
 String getColumnName(int column)
           
 TestReportCommand getCommandAt(int index)
           
 int getRowCount()
           
 Object getValueAt(int iRowIndex, int iColumnIndex)
           
 boolean isCellEditable(int row, int column)
           
 void setValueAt(Object aValue, int iRowIndex, int iColumnIndex)
           
 
Methods inherited from class javax.swing.table.DefaultTableModel
addColumn, addColumn, addColumn, addRow, addRow, convertToVector, convertToVector, getDataVector, insertRow, insertRow, moveRow, newDataAvailable, newRowsAdded, removeRow, rowsRemoved, setColumnCount, setColumnIdentifiers, setColumnIdentifiers, setDataVector, setDataVector, setNumRows, setRowCount
 
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, removeTableModelListener
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TestReportModel

public TestReportModel()
Method Detail

getColumnName

public String getColumnName(int column)

getValueAt

public Object getValueAt(int iRowIndex,
                         int iColumnIndex)

setValueAt

public void setValueAt(Object aValue,
                       int iRowIndex,
                       int iColumnIndex)

getColumnCount

public int getColumnCount()

getRowCount

public int getRowCount()

isCellEditable

public boolean isCellEditable(int row,
                              int column)

clearModel

public void clearModel()

addCommand

public int addCommand(String command)

addStatus

public void addStatus(int index,
                      boolean success,
                      boolean bold)

getCommandAt

public TestReportCommand getCommandAt(int index)