| Line | |
|---|
| 1 | package MichiganLeft;
|
|---|
| 2 |
|
|---|
| 3 | import javax.swing.JMenuItem;
|
|---|
| 4 |
|
|---|
| 5 | import org.openstreetmap.josm.Main;
|
|---|
| 6 | import org.openstreetmap.josm.gui.MainMenu;
|
|---|
| 7 | import org.openstreetmap.josm.plugins.Plugin;
|
|---|
| 8 | import org.openstreetmap.josm.plugins.PluginInformation;
|
|---|
| 9 |
|
|---|
| 10 | public 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.