jas.io
Class DataTable

java.lang.Object
  extended by javax.swing.table.AbstractTableModel
      extended by jas.io.DataTable
All Implemented Interfaces:
java.io.Serializable, javax.swing.table.TableModel

public class DataTable
extends javax.swing.table.AbstractTableModel

A table contaning columns type based on a ParametersBag object. Each row contains an entry.

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Michele Sonnessa
See Also:
Serialized Form

Constructor Summary
DataTable()
          Create a new empty data table.
DataTable(java.io.File parameterFormFile)
          Create a new data table using a source file to create a column structure.
DataTable(java.io.File parameterFormFile, java.lang.String section)
          Create a new data table using a source file to create a column structure.
 
Method Summary
 void addColumn(ParameterField field)
          Append a column to the data table.
 void addColumn(java.lang.String name, int type)
          Append a column to the data table.
 void addRow()
          Append a new empty row at the end of the table.
 java.lang.Class getColumnClass(int columnIndex)
          Return the class type of the column at given index.
 int getColumnCount()
          Return the count of columns.
 java.util.List getColumnFields()
          Return a list of columns.
 java.lang.String getColumnName(int columnIndex)
          Return the name of the column at given index.
 int getRowCount()
          Return the count of rows.
 java.util.List getRows()
          Return a list of rows.
 java.lang.Object getValueAt(int rowIndex, int columnIndex)
          Return the value at given coordinates.
 java.lang.Object getValueAt(int rowIndex, java.lang.String columnName)
          Return the value at given coordinates.
 boolean isCellEditable(int rowIndex, int columnIndex)
          Return always true.
 void removeRow(int rowIndex)
          Remove the row at given index.
 void setValueAt(java.lang.Object aValue, int rowIndex, int columnIndex)
          Set a value at given coordinates.
 void setValueAt(java.lang.Object aValue, int rowIndex, java.lang.String columnName)
          Set a value at given coordinates.
 
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListener
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataTable

public DataTable()
Create a new empty data table.


DataTable

public DataTable(java.io.File parameterFormFile)
Create a new data table using a source file to create a column structure.

Parameters:
parameterFormFile - An XML pForm file.

DataTable

public DataTable(java.io.File parameterFormFile,
                 java.lang.String section)
Create a new data table using a source file to create a column structure.

Parameters:
parameterFormFile - An XML pForm file.
section - Uses only parameters defined into a section.
Method Detail

addColumn

public void addColumn(ParameterField field)
Append a column to the data table.

Parameters:
field - A parameter field describing the column.

addColumn

public void addColumn(java.lang.String name,
                      int type)
Append a column to the data table.

Parameters:
name - The name of the column.
type - The type of the field. A TYPE_ constant defined into ParameterField class.

addRow

public void addRow()
Append a new empty row at the end of the table.


getColumnClass

public java.lang.Class getColumnClass(int columnIndex)
Return the class type of the column at given index.

Specified by:
getColumnClass in interface javax.swing.table.TableModel
Overrides:
getColumnClass in class javax.swing.table.AbstractTableModel
Parameters:
columnIndex - The zero based index of the list of columns.
Returns:
The class of value contained by the ParameterField attached to the given column.

getColumnCount

public int getColumnCount()
Return the count of columns.

Returns:
The size of the column list.

getColumnFields

public java.util.List getColumnFields()
Return a list of columns.

Returns:
A list of ParameterFields.

getColumnName

public java.lang.String getColumnName(int columnIndex)
Return the name of the column at given index.

Specified by:
getColumnName in interface javax.swing.table.TableModel
Overrides:
getColumnName in class javax.swing.table.AbstractTableModel
Parameters:
columnIndex - The zero based index of the list of columns.
Returns:
The name of the ParameterField attached to the given column.

getRowCount

public int getRowCount()
Return the count of rows.

Returns:
The size of the row list.

getRows

public java.util.List getRows()
Return a list of rows.

Returns:
A list of ArrayList containing the values for each column.

getValueAt

public java.lang.Object getValueAt(int rowIndex,
                                   int columnIndex)
Return the value at given coordinates.

Parameters:
rowIndex - The zero based index of the list of rows.
columnIndex - The zero based index of the list of columns.
Returns:
The value currently stored at given position.

getValueAt

public java.lang.Object getValueAt(int rowIndex,
                                   java.lang.String columnName)
Return the value at given coordinates.

Parameters:
rowIndex - The zero based index of the list of rows.
columnName - The name of the column.
Returns:
The value currently stored at given position.

isCellEditable

public boolean isCellEditable(int rowIndex,
                              int columnIndex)
Return always true.

Specified by:
isCellEditable in interface javax.swing.table.TableModel
Overrides:
isCellEditable in class javax.swing.table.AbstractTableModel
Parameters:
rowIndex - The zero based index of the list of rows.
columnIndex - The zero based index of the list of columns.
Returns:
True.

removeRow

public void removeRow(int rowIndex)
Remove the row at given index.

Parameters:
rowIndex - The zero based index of the list of rows.

setValueAt

public void setValueAt(java.lang.Object aValue,
                       int rowIndex,
                       int columnIndex)
Set a value at given coordinates.

Specified by:
setValueAt in interface javax.swing.table.TableModel
Overrides:
setValueAt in class javax.swing.table.AbstractTableModel
Parameters:
aValue - The value to put at given position.
rowIndex - The zero based index of the list of rows.
columnIndex - The zero based index of the list of columns.

setValueAt

public void setValueAt(java.lang.Object aValue,
                       int rowIndex,
                       java.lang.String columnName)
Set a value at given coordinates.

Parameters:
aValue - The value to put at given position.
rowIndex - The zero based index of the list of rows.
columnName - The name of the column.