- /*
- * @(#)ListSelectionListener.java 1.12 03/12/19
- *
- * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
-
- package javax.swing.event;
-
-
- import java.util.EventListener;
-
-
- /**
- * The listener that's notified when a lists selection value
- * changes.
- *
- * @see javax.swing.ListSelectionModel
- *
- * @version 1.12 12/19/03
- * @author Hans Muller
- */
-
- public interface ListSelectionListener extends EventListener
- {
- /**
- * Called whenever the value of the selection changes.
- * @param e the event that characterizes the change.
- */
- void valueChanged(ListSelectionEvent e);
- }
-
-