source: osm/applications/editors/josm/plugins/terracer/src/terracer/TerracerPlugin.java@ 23191

Last change on this file since 23191 was 23191, checked in by stoecker, 14 years ago

remove tabs

File size: 706 bytes
Line 
1/**
2 * Terracer: A JOSM Plugin for terraced houses.
3 *
4 * Copyright 2009 CloudMade Ltd.
5 *
6 * Released under the GPLv2, see LICENSE file for details.
7 */
8package terracer;
9
10import org.openstreetmap.josm.Main;
11import org.openstreetmap.josm.gui.MainMenu;
12import org.openstreetmap.josm.plugins.Plugin;
13import org.openstreetmap.josm.plugins.PluginInformation;
14
15/**
16 * Plugin interface implementation for Terracer.
17 *
18 * @author zere
19 */
20public class TerracerPlugin extends Plugin {
21 public TerracerPlugin(PluginInformation info) {
22 super(info);
23
24 MainMenu.add(Main.main.menu.toolsMenu, new TerracerAction());
25 MainMenu.add(Main.main.menu.toolsMenu, new ReverseTerraceAction());
26 }
27}
Note: See TracBrowser for help on using the repository browser.