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 | |
---|
1 | package mergeoverlap;
|
---|
2 |
|
---|
3 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
4 |
|
---|
5 | import org.openstreetmap.josm.Main;
|
---|
6 | import org.openstreetmap.josm.gui.MainMenu;
|
---|
7 | import org.openstreetmap.josm.plugins.Plugin;
|
---|
8 | import org.openstreetmap.josm.plugins.PluginInformation;
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * A plugin merge overlapping part of selected ways to fix warns
|
---|
12 | */
|
---|
13 | public 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.