source: osm/applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java@ 19452

Last change on this file since 19452 was 19452, checked in by guggis, 16 years ago

'Commit message'

File size: 476 bytes
Line 
1package MichiganLeft;
2
3import javax.swing.JMenuItem;
4
5import org.openstreetmap.josm.Main;
6import org.openstreetmap.josm.gui.MainMenu;
7import org.openstreetmap.josm.plugins.Plugin;
8import org.openstreetmap.josm.plugins.PluginInformation;
9
10public class MichiganLeft extends Plugin {
11 JMenuItem MichiganLeft;
12
13 public MichiganLeft(PluginInformation info) {
14 super(info);
15 MichiganLeft = MainMenu.add(Main.main.menu.toolsMenu, new MichiganLeftAction());
16
17 }
18}
Note: See TracBrowser for help on using the repository browser.