source: josm/trunk/src/org/openstreetmap/josm/gui/help/Helpful.java@ 10534

Last change on this file since 10534 was 10137, checked in by Don-vip, 8 years ago

sonar, javadoc

  • Property svn:eol-style set to native
File size: 346 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.help;
3
4/**
5 * Anything on which we can provide help.
6 * @since 2252
7 */
8public interface Helpful {
9
10 /**
11 * Returns the help topic on JOSM wiki for this feature.
12 * @return the help topic on JOSM wiki for this feature
13 */
14 String helpTopic();
15}
Note: See TracBrowser for help on using the repository browser.