1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.cb.cardboard;
21
22 import javax.swing.event.ListSelectionEvent;
23
24 /***
25 * An event that characterizes a change in the current
26 * selection.
27 * BoardSelectionListeners will generally query the source of
28 * the event for the new selected status of each potentially
29 * changed card.
30 * <p>
31 * @author jerome@coffeebreaks.org - last modified by $LastChangedBy: jerome $
32 * @version $Id: BoardSelectionEvent.java 129 2004-04-15 05:00:43Z jerome $
33 * @see org.cb.cardboard.BoardSelectionModel
34 */
35 public class BoardSelectionEvent extends ListSelectionEvent
36 {
37 /***
38 * Represents a change in selection status for the specified <code>indexes</code>.
39 *
40 * @param source the object that changed
41 * @param index the index that changed
42 * @param isAdjusting an indication that this is one of rapid a series of events
43 */
44 public BoardSelectionEvent(final Object source, final int index, final boolean isAdjusting)
45 {
46 super(source, index, index, isAdjusting);
47 }
48 }