source: josm/trunk/src/org/openstreetmap/josm/gui/dialogs/IEnabledStateUpdating.java@ 13661

Last change on this file since 13661 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: 417 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs;
3
4/**
5 * To be implemented by actions for which their enabled state depends on another model.
6 * @since 10600 (refactoring to new package, functional interface)
7 */
8@FunctionalInterface
9public interface IEnabledStateUpdating {
10
11 /**
12 * Called after the layer model has changed.
13 */
14 void updateEnabledState();
15}
Note: See TracBrowser for help on using the repository browser.