source: josm/trunk/src/org/openstreetmap/josm/actions/ParameterizedAction.java@ 3734

Last change on this file since 3734 was 3720, checked in by bastiK, 13 years ago

added missing svn:eol-style

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 381 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import java.awt.event.ActionEvent;
5import java.util.List;
6import java.util.Map;
7
8import javax.swing.Action;
9
10public interface ParameterizedAction extends Action {
11
12 List<ActionParameter<?>> getActionParameters();
13 void actionPerformed(ActionEvent e, Map<String, Object> parameters);
14
15}
Note: See TracBrowser for help on using the repository browser.