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

Last change on this file since 31156 was 30895, checked in by malcolmh, 10 years ago

Add SeaChartEdit plugin

File size: 702 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.Main;
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(Main.main.menu.toolsMenu, new SCeditAction());
22 }
23}
Note: See TracBrowser for help on using the repository browser.