source: osm/applications/editors/josm/plugins/Create_grid_of_ways/src/CreateGridOfWaysPlugin/CreateGridOfWaysPlugin.java

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

checkstyle: fix license header

File size: 515 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package CreateGridOfWaysPlugin;
3
4import org.openstreetmap.josm.gui.MainApplication;
5import org.openstreetmap.josm.gui.MainMenu;
6import org.openstreetmap.josm.plugins.Plugin;
7import org.openstreetmap.josm.plugins.PluginInformation;
8
9public 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.