| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package CreateGridOfWaysPlugin;
|
|---|
| 3 |
|
|---|
| 4 | import org.openstreetmap.josm.gui.MainApplication;
|
|---|
| 5 | import org.openstreetmap.josm.gui.MainMenu;
|
|---|
| 6 | import org.openstreetmap.josm.plugins.Plugin;
|
|---|
| 7 | import org.openstreetmap.josm.plugins.PluginInformation;
|
|---|
| 8 |
|
|---|
| 9 | public class CreateGridOfWaysPlugin extends Plugin {
|
|---|
| 10 | public CreateGridOfWaysPlugin(PluginInformation info) {
|
|---|
| 11 | super(info);
|
|---|
| 12 | MainMenu.add(MainApplication.getMenu().moreToolsMenu, new CreateGridOfWaysAction());
|
|---|
| 13 | }
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.