Line | |
---|
1 | /* Copyright 2014 Malcolm Herring
|
---|
2 | *
|
---|
3 | * This is free software: you can redistribute it and/or modify
|
---|
4 | * it under the terms of the GNU General Public License as published by
|
---|
5 | * the Free Software Foundation, version 3 of the License.
|
---|
6 | *
|
---|
7 | * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>.
|
---|
8 | */
|
---|
9 |
|
---|
10 | package scedit;
|
---|
11 |
|
---|
12 | import org.openstreetmap.josm.Main;
|
---|
13 | import org.openstreetmap.josm.gui.MainMenu;
|
---|
14 | import org.openstreetmap.josm.plugins.Plugin;
|
---|
15 | import org.openstreetmap.josm.plugins.PluginInformation;
|
---|
16 |
|
---|
17 | public class SCedit extends Plugin {
|
---|
18 |
|
---|
19 | public SCedit(PluginInformation info) {
|
---|
20 | super(info);
|
---|
21 | MainMenu.add(Main.main.menu.toolsMenu, new SCeditAction());
|
---|
22 | }
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.