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

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

code refactoring - strip actions from LayerListDialog to new package gui.dialogs.layer

  • Property svn:eol-style set to native
File size: 335 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.layer;
3
4/**
5 * To be implemented by actions for which their enabled state depends on another model.
6 */
7public interface IEnabledStateUpdating {
8
9 /**
10 * Called after the layer model has changed.
11 */
12 void updateEnabledState();
13}
Note: See TracBrowser for help on using the repository browser.