jnmousemotionlistener.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 26 行

JAVA
26
字号
package org.jnode.wt.events;

import org.jnode.wt.events.JNodeMouseEvent;

/**
 * @author vali
 *
 * To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
public interface JNMouseMotionListener {
    /**
     * This method is called when the mouse is pressed over a component.
     *
     * @param event the <code>JNMouseEvent</code> for the press
     */
    void mouseDragged(JNodeMouseEvent event);

    /**
     * This method is called when the mouse is pressed over a component.
     *
     * @param event the <code>JNMouseEvent</code> for the press
     */
    void mouseMoved(JNodeMouseEvent event);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?