source: josm/trunk/src/org/openstreetmap/josm/gui/util/ModifierListener.java@ 12304

Last change on this file since 12304 was 12304, checked in by michael2402, 7 years ago

Javadoc for public methods / classes in gui.util and gui.widgets

  • Property svn:eol-style set to native
File size: 421 bytes
RevLine 
[7937]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.util;
3
4/**
5 * Listener called when pressed modifier keys change is detected
6 * @since 7217
[10600]7 * @since 10600 (functional interface)
[7937]8 */
[10600]9@FunctionalInterface
[7937]10public interface ModifierListener {
[12304]11 /**
12 * Called when the modifiers are changed
13 * @param modifiers The new modifiers
14 */
[8512]15 void modifiersChanged(int modifiers);
[7937]16}
Note: See TracBrowser for help on using the repository browser.