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