- Timestamp:
- 2017-05-10T22:37:07+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DataSelectionListener.java
r12069 r12097 21 21 /** 22 22 * Called whenever the selection is changed. 23 * @param e The selection change event. 24 */ 25 void selectionChanged(SelectionChangeEvent e); 23 * 24 * You get notified about the new selection, the elements that were added and removed and the layer that triggered the event. 25 * @param event The selection change event. 26 * @see SelectionChangeEvent 27 */ 28 void selectionChanged(SelectionChangeEvent event); 26 29 27 30 /** … … 53 56 * <p> 54 57 * This collection cannot be modified and will not change. 55 * @return The primitives 58 * @return The primitives that were removed 56 59 */ 57 60 Set<OsmPrimitive> getRemoved(); … … 63 66 * <p> 64 67 * This collection cannot be modified and will not change. 65 * @return The primitives 68 * @return The primitives that were added 66 69 */ 67 70 Set<OsmPrimitive> getAdded(); … … 76 79 * Test if this event did not change anything. 77 80 * <p> 78 * Shouldreturntruefor all events that arefired.81 * This will return <code>false</code> for all events that are sent to listeners, so you don't need to test it. 79 82 * @return <code>true</code> if this did not change the selection. 80 83 */
Note:
See TracChangeset
for help on using the changeset viewer.