📄 customerbean.java
字号:
package htmltaglibs.beans;
public class CustomerBean {
private int custId;
private String name;
private String[] favColors=new String[0];
public CustomerBean() {
}
public int getCustId(){
return this.custId;
}
public String getName(){
return this.name;
}
public String[] getFavColors(){
return this.favColors;
}
public void setCustId(int custId){
this.custId=custId;
}
public void setName(String name){
this.name=name;
}
public void setFavColors(String[] favColors){
this.favColors=favColors;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -