trayiconevent.java
来自「一个仿千千静听音乐播放器的Java源代码」· Java 代码 · 共 34 行
JAVA
34 行
package eb.cstop.swt;
//download:http://www.codefans.net
public class TrayIconEvent {
private int button = -1;
private Object source = null;
private int x = 0;
private int y = 0;
public int getButton() {
return button;
}
protected void setButton(int button) {
this.button = button;
}
public Object getSource() {
return source;
}
protected void setSource(Object source) {
this.source = source;
}
public int getX() {
return x;
}
protected void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
protected void setY(int y) {
this.y = y;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?