source: osm/applications/editors/josm/oldplugins/public_transport_layer/src/ptl/Plugin.java

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.
2package ptl;
3
4import org.openstreetmap.josm.gui.MainApplication;
5import org.openstreetmap.josm.gui.MainMenu;
6import org.openstreetmap.josm.plugins.PluginInformation;
7
8/**
9 * Public transport layer plugin.
10 */
11public 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.