| Revision 5170,
390 bytes
checked in by Don-vip, 6 weeks ago
(diff) |
|
cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file. |
|---|
| 2 | package org.openstreetmap.josm.actions; |
|---|
| 3 | |
|---|
| 4 | import java.awt.event.ActionEvent; |
|---|
| 5 | import java.util.List; |
|---|
| 6 | import java.util.Map; |
|---|
| 7 | |
|---|
| 8 | import javax.swing.Action; |
|---|
| 9 | |
|---|
| 10 | public 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.