1. /*
  2. * @(#)TableModelListener.java 1.12 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.event;
  11. import java.util.EventListener;
  12. /**
  13. * TableModelListener defines the interface for an object that listens
  14. * to changes in a TableModel.
  15. *
  16. * @version 1.12 02/02/00
  17. * @author Alan Chung
  18. * @see javax.swing.table.TableModel
  19. */
  20. public interface TableModelListener extends java.util.EventListener
  21. {
  22. /**
  23. * This fine grain notification tells listeners the exact range
  24. * of cells, rows, or columns that changed.
  25. */
  26. public void tableChanged(TableModelEvent e);
  27. }