Ignore:
Timestamp:
2015-12-31T16:37:24+01:00 (8 years ago)
Author:
Don-vip
Message:

fix javadoc errors/warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/util/KeyPressReleaseListener.java

    r8512 r9230  
    55
    66/**
    7  * Interface that is used to detect key pressing and releasing
     7 * Interface that is used to detect key pressing and releasing.
     8 * @since 7219
    89 */
    910public interface KeyPressReleaseListener {
     
    1112     * This is called when key press event is actually pressed
    1213     * (no fake events while holding key)
     14     * @param e key event
    1315     */
    1416    void doKeyPressed(KeyEvent e);
     
    1719     * This is called when key press event is actually released
    1820     * (no fake events while holding key)
     21     * @param e key event
    1922     */
    2023    void doKeyReleased(KeyEvent e);
Note: See TracChangeset for help on using the changeset viewer.