Changeset 1169 in josm for trunk/src/org/openstreetmap/josm/data/SelectionChangedListener.java
- Timestamp:
- 23.12.2008 15:07:05 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/SelectionChangedListener.java
r655 r1169 10 10 * a selection of any data member changes, the dataSet gets informed about this 11 11 * and fires a selectionChanged event. 12 * 12 * 13 13 * Note that these events are not fired immediately but are inserted in the 14 14 * Swing event queue and packed together. So only one selection changed event 15 15 * is issued within a one message dispatch routine. 16 * 16 * 17 17 * @author imi 18 18 */ 19 19 public interface SelectionChangedListener { 20 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);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 26 }
Note: See TracChangeset
for help on using the changeset viewer.
