Spec-Zone .ru
спецификации, руководства, описания, API
JavaTM 2 Platform
Standard Edition

Uses of Class
javax.swing.event.TableModelEvent

Packages that use TableModelEvent
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
javax.swing.event Provides for events fired by Swing components. 
javax.swing.table Provides classes and interfaces for dealing with java.awt.swing.JTable. 
 

Uses of TableModelEvent in javax.swing
 

Methods in javax.swing with parameters of type TableModelEvent
 void JTable.tableChanged(TableModelEvent e)
          The TableModelEvent should be constructed in the co-ordinate system of the model, the appropriate mapping to the view co-ordinate system is performed by the JTable when it recieves the event.
 void JTable.AccessibleJTable.tableChanged(TableModelEvent e)
          Track changes to the table contents
 void JTable.AccessibleJTable.tableRowsInserted(TableModelEvent e)
          Track changes to the table contents (row insertions)
 void JTable.AccessibleJTable.tableRowsDeleted(TableModelEvent e)
          Track changes to the table contents (row deletions)
 

Uses of TableModelEvent in javax.swing.event
 

Methods in javax.swing.event with parameters of type TableModelEvent
 void TableModelListener.tableChanged(TableModelEvent e)
          This fine grain notification tells listeners the exact range of cells, rows, or columns that changed.
 

Uses of TableModelEvent in javax.swing.table
 

Methods in javax.swing.table with parameters of type TableModelEvent
 void AbstractTableModel.fireTableChanged(TableModelEvent e)
          Forward the given notification event to all TableModelListeners that registered themselves as listeners for this table model.
 void DefaultTableModel.newDataAvailable(TableModelEvent event)
          Equivalent to fireTableChanged.
 void DefaultTableModel.newRowsAdded(TableModelEvent event)
          This method will make sure the new rows have the correct number of columns.
 void DefaultTableModel.rowsRemoved(TableModelEvent event)
          Equivalent to fireTableChanged().
 


JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.