source: josm/trunk/src/org/openstreetmap/josm/actions/UnselectAllAction.java@ 6248

Last change on this file since 6248 was 6084, checked in by bastiK, 11 years ago

see #8902 - add missing @Override annotations (patch by shinigami)

  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9
10import org.openstreetmap.josm.tools.Shortcut;
11
12public class UnselectAllAction extends JosmAction {
13
14 public UnselectAllAction() {
15 super(tr("Unselect All"), "unselectall", tr("Unselect all objects."),
16 Shortcut.registerShortcut("edit:unselectall", tr("Edit: {0}",
17 tr("Unselect All")), KeyEvent.VK_ESCAPE, Shortcut.DIRECT), true);
18
19 putValue("help", ht("/Action/UnselectAll"));
20 }
21
22 @Override
23 public void actionPerformed(ActionEvent e) {
24 if (!isEnabled())
25 return;
26 getCurrentDataSet().setSelected();
27 }
28 /**
29 * Refreshes the enabled state
30 *
31 */
32 @Override
33 protected void updateEnabledState() {
34 setEnabled(getEditLayer() != null);
35 }
36}
Note: See TracBrowser for help on using the repository browser.