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

📄 eventlistenerlist.java

📁 j2me 高级UI
💻 JAVA
字号:
/**
 * 作者:cat 戚永城
 * 时间:2008-3-1
 * QQ:415898635
 * E-Mail:	415898635@qq.com
 * 			qyc_12345@163.com
 * 
 * */
package org.qui.event;
/**List中每种Action只能注册一次*/
public class EventListenerList {

	ActionListener a = null;

	ItemStateListener i = null;

	public EventListenerList() {

	}

	public void add(ActionListener a) {
		this.a = a;
	}

	public void add(ItemStateListener i) {
		this.i = i;
	}

	public ActionListener getActionListener() {
		return a;
	}

	public ItemStateListener getItemStateListener() {
		return i;
	}
}

⌨️ 快捷键说明

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