| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
The TableModel interface specifies the methods that the JTable class will use to interrogate a tabular data model.
| Method Summary | |
|  void | addTableModelListener(TableModelListener l)Adds a listener that will be notified each time the data model changes. | 
|  void | fireTableChanged(TableModelEvent evt_) | 
|  int | getColumnCount()Get the number of columns in the model. | 
|  java.lang.String | getColumnName(int column_)Get the name of the specified column. | 
|  int | getRowCount()Get the number of rows in the model. | 
|  java.lang.Object | getValueAt(int rowIndex_,
           int columnIndex_)Returns an attribute value for the cell at (rowIndex, columnIndex) | 
|  void | removeTableModelListener(TableModelListener l)Removes the specified listener from the list of listeners. | 
|  void | setValueAt(java.lang.Object value_,
           int row_,
           int column_)Sets the attribute value for the cell at position (row, column). | 
| Method Detail | 
public void addTableModelListener(TableModelListener l)
public void removeTableModelListener(TableModelListener l)
public int getColumnCount()
public java.lang.String getColumnName(int column_)
public int getRowCount()
public java.lang.Object getValueAt(int rowIndex_,
                                   int columnIndex_)
public void setValueAt(java.lang.Object value_,
                       int row_,
                       int column_)
public void fireTableChanged(TableModelEvent evt_)
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||