- /*
- * @(#)TableModelListener.java 1.12 00/02/02
- *
- * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package javax.swing.event;
-
- import java.util.EventListener;
-
- /**
- * TableModelListener defines the interface for an object that listens
- * to changes in a TableModel.
- *
- * @version 1.12 02/02/00
- * @author Alan Chung
- * @see javax.swing.table.TableModel
- */
-
- public interface TableModelListener extends java.util.EventListener
- {
- /**
- * This fine grain notification tells listeners the exact range
- * of cells, rows, or columns that changed.
- */
- public void tableChanged(TableModelEvent e);
- }
-