📄 actionlistener.java
字号:
/*
* $Workfile: ActionListener.java$ Copyright (c) 2005 Freeborders. All rights
* reserved. Last Changed by: $Author:user$ On: $Date: 2005-6-6 15:24:59$
* $Revision: 1$
*/
package base;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
/**
* Class description goes here.
*
* @version 1.0 2005-6-6
* @author user
*/
public class ActionListener implements ApplicationListener
{
public void onApplicationEvent(ApplicationEvent event)
{
if(event instanceof ActionEvent)
{
System.out.println("========="+event.toString());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -