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

Last change on this file since 32538 was 32538, checked in by donvip, 8 years ago

checkstyle

File size: 508 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package ptl;
3
4import org.openstreetmap.josm.Main;
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(Main.main.menu.dataMenu, new PublicTransportLayer.AddLayerAction());
13 MainMenu.add(Main.main.menu.dataMenu, new DistanceBetweenStops());
14 }
15}
16
Note: See TracBrowser for help on using the repository browser.