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

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

see #11390 - sonar - squid:S1609 - Java 8: @FunctionalInterface annotation should be used to flag Single Abstract Method interfaces

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