|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.swing.table.AbstractTableModel
jas.io.DataTable
public class DataTable
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.
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 |
---|
public DataTable()
public DataTable(java.io.File parameterFormFile)
parameterFormFile
- An XML pForm file.public DataTable(java.io.File parameterFormFile, java.lang.String section)
parameterFormFile
- An XML pForm file.section
- Uses only parameters defined into a section.Method Detail |
---|
public void addColumn(ParameterField field)
field
- A parameter field describing the column.public void addColumn(java.lang.String name, int type)
name
- The name of the column.type
- The type of the field. A TYPE_ constant defined
into ParameterField class.public void addRow()
public java.lang.Class getColumnClass(int columnIndex)
getColumnClass
in interface javax.swing.table.TableModel
getColumnClass
in class javax.swing.table.AbstractTableModel
columnIndex
- The zero based index of the list of columns.
public int getColumnCount()
public java.util.List getColumnFields()
public java.lang.String getColumnName(int columnIndex)
getColumnName
in interface javax.swing.table.TableModel
getColumnName
in class javax.swing.table.AbstractTableModel
columnIndex
- The zero based index of the list of columns.
public int getRowCount()
public java.util.List getRows()
public java.lang.Object getValueAt(int rowIndex, int columnIndex)
rowIndex
- The zero based index of the list of rows.columnIndex
- The zero based index of the list of columns.
public java.lang.Object getValueAt(int rowIndex, java.lang.String columnName)
rowIndex
- The zero based index of the list of rows.columnName
- The name of the column.
public boolean isCellEditable(int rowIndex, int columnIndex)
isCellEditable
in interface javax.swing.table.TableModel
isCellEditable
in class javax.swing.table.AbstractTableModel
rowIndex
- The zero based index of the list of rows.columnIndex
- The zero based index of the list of columns.
public void removeRow(int rowIndex)
rowIndex
- The zero based index of the list of rows.public void setValueAt(java.lang.Object aValue, int rowIndex, int columnIndex)
setValueAt
in interface javax.swing.table.TableModel
setValueAt
in class javax.swing.table.AbstractTableModel
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.public void setValueAt(java.lang.Object aValue, int rowIndex, java.lang.String columnName)
aValue
- The value to put at given position.rowIndex
- The zero based index of the list of rows.columnName
- The name of the column.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |