java 代碼
import org
/**
* 定義事件信息
* @author new
*
*/
public class MessageEvent extends ApplicationEvent {
private String message;
public void setMessage(String message){
this
}
public String getMessage(){
return message;
}
public MessageEvent(Object source
super(source);
this
// TODO Auto
}
private static final long serialVersionUID =
}
[
From:http://tw.wingwit.com/Article/program/Java/ky/201311/29120.html