source: josm/trunk/src/org/openstreetmap/josm/data/SelectionChangedListener.java@ 444

Last change on this file since 444 was 298, checked in by imi, 17 years ago
  • added license description to head of each source file
File size: 871 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.data;
3
4import java.util.Collection;
5
6import org.openstreetmap.josm.data.osm.OsmPrimitive;
7
8/**
9 * This is a listener for selection changes through the dataset's data. Whenever
10 * a selection of any data meber changes, the dataSet gets informed about this
11 * and fire a selectionChanged event.
12 *
13 * Note, that these events get not fired immediately but are inserted in the
14 * Swing-event queue and packed together. So only one selection changed event
15 * are issued within one message dispatch routine.
16 *
17 * @author imi
18 */
19public interface SelectionChangedListener {
20
21 /**
22 * Informs the listener that the selection in the dataset has changed.
23 * @param newSelection The new selection.
24 */
25 public void selectionChanged(Collection<? extends OsmPrimitive> newSelection);
26}
Note: See TracBrowser for help on using the repository browser.