source:
osm/applications/editors/josm/plugins/restart/src/josmrestartplugin/RestartPlugin.java@
26160
Last change on this file since 26160 was 24193, checked in by , 15 years ago | |
---|---|
File size: 415 bytes |
Line | |
---|---|
1 | package josmrestartplugin; |
2 | |
3 | import org.openstreetmap.josm.Main; |
4 | import org.openstreetmap.josm.plugins.Plugin; |
5 | import org.openstreetmap.josm.plugins.PluginInformation; |
6 | |
7 | public class RestartPlugin extends Plugin { |
8 | public RestartPlugin(PluginInformation info) { |
9 | super(info); |
10 | Main.main.menu.fileMenu.insert(new RestartJosmAction(), |
11 | Main.main.menu.fileMenu.getItemCount()-1); |
12 | } |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.