source: osm/applications/editors/josm/plugins/SeaChart/src/seachart/Seachart.java

Last change on this file was 36483, checked in by stoecker, 3 months ago

set eol-style, fix checkstyle issues, add ignores

  • Property svn:eol-style set to native
File size: 499 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package seachart;
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
9/**
10 * @author Malcolm Herring
11 */
12public class Seachart extends Plugin {
13
14 public Seachart(PluginInformation info) {
15 super(info);
16 MainMenu.add(MainApplication.getMenu().imageryMenu, new SeachartAction());
17 }
18}
Note: See TracBrowser for help on using the repository browser.