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

Last change on this file since 4077 was 4032, checked in by stoecker, 13 years ago

allow to define icon and name for search and background layer actions in toolbar

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 390 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 AdaptableAction {
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.