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

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

checkstyle: redundant modifiers

  • Property svn:eol-style set to native
File size: 414 bytes
RevLine 
[4609]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
[6070]6 * and needs information about button showing/hiding events, this interface
[4609]7 * is used, setting the listener should be implemented by @class HideableButton
8 */
9public interface ShowHideButtonListener {
[8512]10 void buttonShown();
[8510]11
[8512]12 void buttonHidden();
[4609]13}
Note: See TracBrowser for help on using the repository browser.