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

Last change on this file since 8674 was 8512, checked in by Don-vip, 9 years ago

checkstyle: redundant modifiers

  • Property svn:eol-style set to native
File size: 414 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 void buttonShown();
11
12 void buttonHidden();
13}
Note: See TracBrowser for help on using the repository browser.