|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.swing.table.AbstractTableModel
org.pentaho.reporting.engine.classic.core.util.TypedTableModel
public class TypedTableModel
Todo: Document me!
Date: 30.06.2009 Time: 16:53:27
Constructor Summary | |
---|---|
TypedTableModel()
|
|
TypedTableModel(int rowIncrement,
int columnIncrement)
|
|
TypedTableModel(String[] columnNames)
|
|
TypedTableModel(String[] columnNames,
Class[] columnClasses)
|
|
TypedTableModel(String[] columnNames,
Class[] columnClasses,
int rowCount)
|
Method Summary | |
---|---|
void |
addColumn(String name,
Class type)
|
void |
addRow(Object[] objects)
|
Class |
getColumnClass(int columnIndex)
Returns the most specific superclass for all the cell values in the column. |
int |
getColumnCount()
Returns the number of columns in the model. |
String |
getColumnName(int columnIndex)
Returns the name of the column at columnIndex . |
int |
getRowCount()
Returns the number of rows in the model. |
Object |
getValueAt(int rowIndex,
int columnIndex)
Returns the value for the cell at columnIndex and
rowIndex . |
boolean |
isCellEditable(int rowIndex,
int columnIndex)
Returns true if the cell at rowIndex and
columnIndex
is editable. |
void |
setColumnName(int colIndex,
String name)
|
void |
setColumnType(int colIndex,
Class type)
|
void |
setValueAt(Object aValue,
int rowIndex,
int columnIndex)
Sets the value in the cell at columnIndex and
rowIndex to aValue . |
String |
toString()
|
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, wait, wait, wait |
Constructor Detail |
---|
public TypedTableModel()
public TypedTableModel(int rowIncrement, int columnIncrement)
public TypedTableModel(String[] columnNames)
public TypedTableModel(String[] columnNames, Class[] columnClasses)
public TypedTableModel(String[] columnNames, Class[] columnClasses, int rowCount)
Method Detail |
---|
public void addColumn(String name, Class type)
public int getRowCount()
JTable
uses this method to determine how many rows it
should display. This method should be quick, as it
is called frequently during rendering.
getColumnCount()
public int getColumnCount()
JTable
uses this method to determine how many columns it
should create and display by default.
getRowCount()
public String getColumnName(int columnIndex)
columnIndex
. This is used
to initialize the table's column header name. Note: this name does
not need to be unique; two columns in a table can have the same name.
getColumnName
in interface TableModel
getColumnName
in class AbstractTableModel
columnIndex
- the index of the column
public Class getColumnClass(int columnIndex)
JTable
to set up a
default renderer and editor for the column.
getColumnClass
in interface TableModel
getColumnClass
in class AbstractTableModel
columnIndex
- the index of the column
public boolean isCellEditable(int rowIndex, int columnIndex)
rowIndex
and
columnIndex
is editable. Otherwise, setValueAt
on the cell will not
change the value of that cell.
isCellEditable
in interface TableModel
isCellEditable
in class AbstractTableModel
rowIndex
- the row whose value to be queriedcolumnIndex
- the column whose value to be queried
setValueAt(java.lang.Object, int, int)
public Object getValueAt(int rowIndex, int columnIndex)
columnIndex
and
rowIndex
.
rowIndex
- the row whose value is to be queriedcolumnIndex
- the column whose value is to be queried
public void setValueAt(Object aValue, int rowIndex, int columnIndex)
columnIndex
and
rowIndex
to aValue
.
setValueAt
in interface TableModel
setValueAt
in class AbstractTableModel
aValue
- the new valuerowIndex
- the row whose value is to be changedcolumnIndex
- the column whose value is to be changedgetValueAt(int, int)
,
isCellEditable(int, int)
public void setColumnType(int colIndex, Class type)
public void setColumnName(int colIndex, String name)
public void addRow(Object[] objects)
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |