source: josm/trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetAware.java@ 14546

Last change on this file since 14546 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

File size: 452 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
3
4import org.openstreetmap.josm.data.osm.Changeset;
5
6/**
7 * Super interface of changeset-aware components.
8 * @since 9493
9 * @since 10600 (functional interface)
10 */
11@FunctionalInterface
12public interface ChangesetAware {
13
14 /**
15 * Returns the current changeset.
16 * @return the current changeset
17 */
18 Changeset getCurrentChangeset();
19}
Note: See TracBrowser for help on using the repository browser.