source: josm/trunk/src/org/openstreetmap/josm/actions/AbstractSelectAction.java@ 9621

Last change on this file since 9621 was 8624, checked in by bastiK, 9 years ago

add missing svn:eol-style=native

  • Property svn:eol-style set to native
File size: 727 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import javax.swing.AbstractAction;
7
8import org.openstreetmap.josm.tools.ImageProvider;
9
10/**
11 * Superclass of "Select" actions in various parts of JOSM.
12 * @since 7949
13 */
14public abstract class AbstractSelectAction extends AbstractAction {
15
16 /**
17 * Constructs a new {@code AbstractSelectAction}.
18 */
19 public AbstractSelectAction() {
20 putValue(NAME, tr("Select"));
21 putValue(SHORT_DESCRIPTION, tr("Set the selected elements on the map to the selected items in the list above."));
22 putValue(SMALL_ICON, ImageProvider.get("dialogs", "select"));
23 }
24}
Note: See TracBrowser for help on using the repository browser.