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

Last change on this file since 6388 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

  • Property svn:eol-style set to native
File size: 872 bytes
Line 
1// License: GPL. For details, see LICENSE file.
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 member changes, the dataSet gets informed about this
11 * and fires a selectionChanged event.
12 *
13 * Note that these events are not fired immediately but are inserted in the
14 * Swing event queue and packed together. So only one selection changed event
15 * is issued within a 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.