source: osm/applications/editors/josm/plugins/public_transport_layer/src/ptl/Plugin.java@ 33528

Last change on this file since 33528 was 33528, checked in by donvip, 7 years ago

fix deprecation warnings

File size: 544 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
8public class Plugin extends org.openstreetmap.josm.plugins.Plugin {
9
10 public Plugin(PluginInformation info) {
11 super(info);
12 MainMenu.add(MainApplication.getMenu().dataMenu, new PublicTransportLayer.AddLayerAction());
13 MainMenu.add(MainApplication.getMenu().dataMenu, new DistanceBetweenStops());
14 }
15}
Note: See TracBrowser for help on using the repository browser.