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

📄 actionevt.java

📁 java virtual machince kaffe
💻 JAVA
字号:
package java.awt;class ActionEvt  extends java.awt.event.ActionEvent{ActionEvt ( Object src, int evtId, String cmd, int mod ) {	super( src, evtId, cmd, mod);}protected void dispatch () {	if ( source instanceof Component ){		((Component)source).process( this);	}	else if ( source instanceof MenuItem ){		((MenuItem)source).process( this);	}	if ( (Defaults.RecycleEvents & AWTEvent.ACTION_EVENT_MASK) != 0 )	recycle();}static synchronized ActionEvt getEvent ( Object source, int id, String cmd, int mods ){    return new ActionEvt( source, id, cmd, mods);}protected void recycle () {}}

⌨️ 快捷键说明

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