jnwindowevent.java

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

JAVA
52
字号
/*
 * Created on 15.12.2003
 *
 * To change the template for this generated file go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
package org.jnode.wt.events;

import org.jnode.wt.components.JNWindow;

/**
 * @author vali
 *
 * To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
public class JNWindowEvent extends JNComponentEvent {
    /** This is the first id in the range of event ids used by this class. */
    public static final int WINDOW_FIRST = 200;

    /** This is the id for a window that is opened. */
    public static final int WINDOW_OPENED = 200;

    /** This is the id for a window that is about to close. */
    public static final int WINDOW_CLOSING = 201;

    /** This is the id for a window that finished closing. */
    public static final int WINDOW_CLOSED = 202;

    /** This is the id for a window that is iconified. */
    public static final int WINDOW_ICONIFIED = 203;

    /** This is the id for a window that is de-iconified. */
    public static final int WINDOW_DEICONIFIED = 204;

    /** This is the id for a window that is activated. */
    public static final int WINDOW_ACTIVATED = 205;

    /** This is the id for a window that is de-activated. */
    public static final int WINDOW_DEACTIVATED = 206;

    /**
     * @param source
     * @param id
     */
    public JNWindowEvent(JNWindow source, int id) {
        super(source, id);
        // TODO Auto-generated constructor stub
    }

}

⌨️ 快捷键说明

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