⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customerbean.java

📁 一个使用htmltaglib的代码,在网上或书籍上一般都看不到
💻 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 + -