?? image.java
字號:
package com.javabean;
public class Image {
private String x;
private String y;
public Image(){
x="";
y="";
}
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
public boolean getSelected(){
boolean select=false;
if((this.x!="")&&(this.y!=""))
select=true;
else
select=false;
return select;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -