?? computer.java
字號:
package torm.test.beans;
import java.util.*;
public class Computer {
private int id;
private boolean repaired;
private float price;
private String brand;
private Date produceDate;
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public java.util.Date getProduceDate() {
return produceDate;
}
public void setProduceDate(java.util.Date produceDate) {
this.produceDate = produceDate;
}
public boolean getRepaired() {
return repaired;
}
public void setRepaired(boolean repaired) {
this.repaired = repaired;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -