1 /* 2 * $Id: SelectionModelListener.java,v 1.1 2005/02/24 20:35:31 rbair Exp $ 3 * 4 * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, 5 * Santa Clara, California 95054, U.S.A. All rights reserved. 6 */ 7 package org.jdesktop.swing.data; 8 9 import java.util.EventListener; 10 11 /** 12 * Listener for tracking changes in what rows are selected in a 13 * SelectionModel 14 * @author Richard Bair 15 */ 16 public interface SelectionModelListener extends EventListener { 17 /** 18 * Called whenever the value of the selection changes 19 * @param e an object containing a description of the event 20 */ 21 public void selectionChanged(SelectionModelEvent e); 22 } 23