source: josm/trunk/src/org/openstreetmap/josm/gui/ShowHideButtonListener.java@ 7337

Last change on this file since 7337 was 6070, checked in by stoecker, 11 years ago

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File size: 427 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui;
3
4/**
5 * When some component (ToggleDialog, for example) is linked to button
6 * and needs information about button showing/hiding events, this interface
7 * is used, setting the listener should be implemented by @class HideableButton
8 */
9public interface ShowHideButtonListener {
10 public void buttonShown();
11 public void buttonHidden();
12}
Note: See TracBrowser for help on using the repository browser.