?? country.java
字號:
package demo.domain;
import java.io.Serializable;
/**
* @version 1.0
*/
public class Country implements Serializable {
private String code;
private String name;
private String continent;
private int population;
private double gnp;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getContinent() {
return continent;
}
public void setContinent(String continent) {
this.continent = continent;
}
public double getGnp() {
return gnp;
}
public void setGnp(double gnp) {
this.gnp = gnp;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPopulation() {
return population;
}
public void setPopulation(int population) {
this.population = population;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -