source: osm/applications/editors/josm/plugins/seachartedit/src/scedit/SCedit.java

Last change on this file was 33920, checked in by donvip, 8 years ago

update to JOSM 12643

File size: 731 bytes
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
10package scedit;
11
12import org.openstreetmap.josm.gui.MainApplication;
13import org.openstreetmap.josm.gui.MainMenu;
14import org.openstreetmap.josm.plugins.Plugin;
15import org.openstreetmap.josm.plugins.PluginInformation;
16
17public class SCedit extends Plugin {
18
19 public SCedit(PluginInformation info) {
20 super(info);
21 MainMenu.add(MainApplication.getMenu().toolsMenu, new SCeditAction());
22 }
23}
Note: See TracBrowser for help on using the repository browser.