📄 testevent.java
字号:
package event;
import java.util.EventObject;
public class testEvent extends EventObject{
private int old;
private int newv;
public testEvent(Object source, int old, int newv){
super(source);
this.old = old;
this.newv = newv;
}
public void setold(int old){
this.old = old;
}
public int getold(){
return this.old;
}
public void setnewv(int newv){
this.newv = newv;
}
public int getnewv(){
return this.newv;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -