source: josm/trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RunnableAction.java@ 8291

Last change on this file since 8291 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: 430 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.relation;
3
4import java.awt.event.ActionEvent;
5
6import javax.swing.AbstractAction;
7
8public abstract class RunnableAction extends AbstractAction implements Runnable {
9
10 public RunnableAction() {
11 }
12
13 @Override
14 public abstract void run();
15
16 @Override
17 public void actionPerformed(ActionEvent arg0) {
18 run();
19 }
20}
Note: See TracBrowser for help on using the repository browser.