|
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.
|
|---|
| 2 | package seachart;
|
|---|
| 3 |
|
|---|
| 4 | import org.openstreetmap.josm.gui.MainApplication;
|
|---|
| 5 | import org.openstreetmap.josm.gui.MainMenu;
|
|---|
| 6 | import org.openstreetmap.josm.plugins.Plugin;
|
|---|
| 7 | import org.openstreetmap.josm.plugins.PluginInformation;
|
|---|
| 8 |
|
|---|
| 9 | /**
|
|---|
| 10 | * @author Malcolm Herring
|
|---|
| 11 | */
|
|---|
| 12 | public 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.