📄 chatwindowlistener.java
字号:
package client.display;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* chatwindow用到的listener
* @author 彭文杰
* 日期:Oct 21, 2006
*/
public class ChatWindowListener implements ActionListener {
private ChatWindow chw;
public ChatWindowListener(ChatWindow chw){
this.chw=chw;
}
public void actionPerformed(ActionEvent arg0) {
}
public ChatWindow getChw() {
return chw;
}
public void setChw(ChatWindow chw) {
this.chw = chw;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -