windowchangelistener.java
来自「本程序是有IBM开发的一个基于数据表格的组件,里面有相关的例子和DOC,本站资料」· Java 代码 · 共 27 行
JAVA
27 行
package com.ibm.j2x.swing.event;
import java.util.EventListener;
/**
* The listener interface for receiving window change events. The class that is
* interested in processing a window change event implements this interface, and
* the object created with that class is registered with a component, using
* the component's addWindowChangeListener method. When the window change event occurs,
* that object's appropriate window change method is invoked.
* @author MAbernethy
*/
public interface WindowChangeListener extends EventListener
{
/** Invoked when the window is to close */
public void windowClosed(WindowChangeEvent e);
/** Invoked when the window is to be maximied */
public void windowMaximized(WindowChangeEvent e);
/** Invoked when the window is to be minimized */
public void windowMinimized(WindowChangeEvent e);
/** Invoked when the window is to be moved */
public void windowMoved(WindowChangeEvent e);
/** Invoked when the window is to be resized */
public void windowResized(WindowChangeEvent e);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?