|
Last change
on this file was 34164, checked in by donvip, 8 years ago |
|
plugin needs to be rebuilt against JOSM 13662+
|
|
File size:
586 bytes
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package ptl;
|
|---|
| 3 |
|
|---|
| 4 | import org.openstreetmap.josm.gui.MainApplication;
|
|---|
| 5 | import org.openstreetmap.josm.gui.MainMenu;
|
|---|
| 6 | import org.openstreetmap.josm.plugins.PluginInformation;
|
|---|
| 7 |
|
|---|
| 8 | /**
|
|---|
| 9 | * Public transport layer plugin.
|
|---|
| 10 | */
|
|---|
| 11 | public class Plugin extends org.openstreetmap.josm.plugins.Plugin {
|
|---|
| 12 |
|
|---|
| 13 | public Plugin(PluginInformation info) {
|
|---|
| 14 | super(info);
|
|---|
| 15 | MainMenu.add(MainApplication.getMenu().dataMenu, new PublicTransportLayer.AddLayerAction());
|
|---|
| 16 | MainMenu.add(MainApplication.getMenu().dataMenu, new DistanceBetweenStops());
|
|---|
| 17 | }
|
|---|
| 18 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.