KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jdesktop > swing > event > SelectionListener


1 /*
2  * $Id: SelectionListener.java,v 1.1.1.1 2004/06/16 01:43:39 davidson1 Exp $
3  *
4  * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
5  * Santa Clara, California 95054, U.S.A. All rights reserved.
6  */

7
8 package org.jdesktop.swing.event;
9
10 import javax.swing.event.ListSelectionEvent JavaDoc;
11 import javax.swing.event.TreeSelectionEvent JavaDoc;
12
13 /**
14  * Listener for receiving global selection change notifications.
15  * @author Amy Fowler
16  * @version 1.0
17  */

18 public interface SelectionListener {
19
20     void valueChanged(ListSelectionEvent JavaDoc e);
21     void valueChanged(TreeSelectionEvent JavaDoc e);
22
23 }
24
Popular Tags