⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 windowchangelistener.java

📁 ibm的窗体
💻 JAVA
字号:

package com.ibm.iwt.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -