1. /*
  2. * @(#)ListSelectionListener.java 1.9 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. * The listener that's notified when a lists selection value
  14. * changes.
  15. *
  16. * @see javax.swing.ListSelectionModel
  17. *
  18. * @version 1.9 02/02/00
  19. * @author Hans Muller
  20. */
  21. public interface ListSelectionListener extends EventListener
  22. {
  23. /**
  24. * Called whenever the value of the selection changes.
  25. * @param e the event that characterizes the change.
  26. */
  27. void valueChanged(ListSelectionEvent e);
  28. }