/* * Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. 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. * * @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); }