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
Line 
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
7 * @since 10600 (functional interface)
8 */
9@FunctionalInterface
10public interface ModifierListener {
11 /**
12 * Called when the modifiers are changed
13 * @param modifiers The new modifiers
14 */
15 void modifiersChanged(int modifiers);
16}
Note: See TracBrowser for help on using the repository browser.