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

Last change on this file since 34398 was 33848, checked in by donvip, 7 years ago

update to JOSM 12840

File size: 625 bytes
Line 
1package mergeoverlap;
2
3import org.openstreetmap.josm.gui.MainApplication;
4import org.openstreetmap.josm.gui.MainMenu;
5import org.openstreetmap.josm.plugins.Plugin;
6import org.openstreetmap.josm.plugins.PluginInformation;
7
8/**
9 * A plugin merge overlapping part of selected ways to fix warns
10 */
11public class MergeOverlapPlugin extends Plugin {
12
13 /**
14 * Constructs a new {@code MergeOverlapPlugin}.
15 * @param info plugin information
16 */
17 public MergeOverlapPlugin(PluginInformation info) {
18 super(info);
19 MainMenu.add(MainApplication.getMenu().moreToolsMenu, new MergeOverlapAction());
20 }
21}
Note: See TracBrowser for help on using the repository browser.