📄 actionevt.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 + -