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

📄 profileto.java

📁 struts的一些用的书籍
💻 JAVA
字号:
package app03b.to;

public class ProfileTO {
  private String displayName;
  private boolean subscribe;
  private String[] interests;
  private int[] cities; // from which you will access our service.
  private int userType; // organization, individual
  private int incomeLevel; // radio buttons

  public String getDisplayName() {
    return displayName;
  }
  public void setDisplayName(String displayName) {
    this.displayName = displayName;
  }
  public String[] getInterests() {
    return interests;
  }
  public void setInterests(String[] interests) {
    this.interests = interests;
  }
  public boolean isSubscribe() {
    return subscribe;
  }
  public void setSubscribe(boolean subscribe) {
    this.subscribe = subscribe;
  }
  public int[] getCities() {
    return cities;
  }
  public void setCities(int[] cities) {
    this.cities = cities;
  }
  public int getIncomeLevel() {
    return incomeLevel;
  } 
  public void setIncomeLevel(int incomeLevel) {
    this.incomeLevel = incomeLevel;
  }
  public int getUserType() {
    return userType;
  }
  public void setUserType(int userType) {
    this.userType = userType;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -