source: osm/applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapPlugin.java@ 30197

Last change on this file since 30197 was 29778, checked in by akks, 12 years ago

[josm_plugins]: see #josm6355 - Move most of the other plugins to suitable menus, add Netbeans projects

File size: 610 bytes
Line 
1package mergeoverlap;
2
3import static org.openstreetmap.josm.tools.I18n.tr;
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
10/**
11 * A plugin merge overlapping part of selected ways to fix warns
12 */
13public class MergeOverlapPlugin extends Plugin {
14
15 protected String name;
16
17 public MergeOverlapPlugin(PluginInformation info) {
18 super(info);
19 name = tr("Merge overlap");
20 MainMenu.add(Main.main.menu.moreToolsMenu, new MergeOverlapAction());
21 }
22}
Note: See TracBrowser for help on using the repository browser.