Package charvax.swing.event

Examples of charvax.swing.event.TableModelEvent


    /** Notifies all listeners that the value at [row, column] has been
     * updated.
     */
    public void fireTableCellUpdated(int row_, int column_) {
  TableModelEvent evt = new TableModelEvent(this, row_, row_, column_);
  fireTableChanged(evt);
    }
View Full Code Here


    /** Notifies all listeners that all cell values in the table may have
     * changed.
     */
    public void fireTableDataChanged() {
  TableModelEvent evt = new TableModelEvent(
      this, 0, this.getRowCount()-1, TableModelEvent.ALL_COLUMNS);
  fireTableChanged(evt);
    }
View Full Code Here

    /** Notifies all listeners that rows in the range [firstRow_, lastRow_],
     * inclusive, have been deleted.
     */
    public void fireTableRowsDeleted(int firstRow_, int lastRow_) {
  TableModelEvent evt = new TableModelEvent(
      this, firstRow_, lastRow_, TableModelEvent.ALL_COLUMNS,
      TableModelEvent.DELETE);
  fireTableChanged(evt);
    }
View Full Code Here

    /** Notifies all listeners that rows in the range [firstRow_, lastRow_],
     * inclusive, have been inserted.
     */
    public void fireTableRowsInserted(int firstRow_, int lastRow_) {
  TableModelEvent evt = new TableModelEvent(
      this, firstRow_, lastRow_, TableModelEvent.ALL_COLUMNS,
      TableModelEvent.INSERT);
  fireTableChanged(evt);
    }
View Full Code Here

TOP

Related Classes of charvax.swing.event.TableModelEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.