Changeset 5275 in josm for trunk/src/org/openstreetmap/josm/actions/mapmode
- Timestamp:
- 2012-06-09T20:03:41+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/DeleteAction.java
r5266 r5275 33 33 34 34 /** 35 * A n actionthat enables the user to delete nodes and other objects.35 * A map mode that enables the user to delete nodes and other objects. 36 36 * 37 37 * The user can click on an object, which gets deleted if possible. When Ctrl is … … 43 43 * 44 44 * If the user enters the mapmode and any object is selected, all selected 45 * objects that can be deletedwill.45 * objects are deleted, if possible. 46 46 * 47 47 * @author imi … … 162 162 /** 163 163 * Listen to mouse move to be able to update the cursor (and highlights) 164 * @param MouseEventThe mouse event that has been captured164 * @param e The mouse event that has been captured 165 165 */ 166 166 @Override public void mouseMoved(MouseEvent e) { … … 256 256 * highlights 257 257 * 258 * @param MouseEvent259 * @param intmodifiers258 * @param e 259 * @param modifiers 260 260 */ 261 261 private void updateCursor(MouseEvent e, int modifiers) { … … 330 330 331 331 /** 332 * Deletes the relation in the context of the given layer. Also notifies 333 * {@link RelationDialogManager} and {@link OsmDataLayer#fireDataChange()} events. 332 * Deletes the relation in the context of the given layer. 334 333 * 335 334 * @param layer the layer in whose context the relation is deleted. Must not be null. … … 385 384 * that should be deleted but does not actually delete them. 386 385 * @param e MouseEvent from which modifiers and position are taken 387 * @param intmodifiers For explanation: @see updateCursor386 * @param modifiers For explanation: @see updateCursor 388 387 * @param silet Set to true if the user should not be bugged with additional 389 388 * dialogs
Note:
See TracChangeset
for help on using the changeset viewer.