📄 showmsg.java
字号:
/*
* ShowMsg.java
*
* Created on 2006年5月7日, 下午12:05
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package skyqq;
/**
*
* @author wjhua
*/
public class ShowMsg implements Runnable{
App app;
String str;
/** Creates a new instance of ShowMsg */
public ShowMsg(App a,String s) {
app=a;
str=s;
}
void setMsg(String s){
str=s;
}
public void run() {
app.showMsg(str);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -