1 /* 2 * @(#)RowSorterListener.java 1.2 05/11/17 3 * 4 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 package javax.swing.event; 8 9 /** 10 * <code>RowSorterListener</code>s are notified of changes to a 11 * <code>RowSorter</code>. 12 * 13 * @version 1.2 11/17/05 14 * @see javax.swing.RowSorter 15 * @since 1.6 16 */ 17 public interface RowSorterListener extends java.util.EventListener { 18 /** 19 * Notification that the <code>RowSorter</code> has changed. The event 20 * describes the scope of the change. 21 * 22 * @param e the event, will not be null 23 */ 24 public void sorterChanged(RowSorterEvent e); 25 } 26