bigcatalogform.java~2~

来自「一个很不错的电子商务后台管理系统 这是一个电子商务网站的后台管理系统 要」· JAVA~2~ 代码 · 共 37 行

JAVA~2~
37
字号
package xian.bin.catalog;import org.apache.struts.action.*;import javax.servlet.http.*;public class BigCatalogForm extends ActionForm {  private String catalog;  private String order;  private java.util.Collection catalogs;  public String getCatalog() {    return catalog;  }  public void setCatalog(String catalog) {    this.catalog = catalog;  }  public String getOrder() {    return order;  }  public void setOrder(String order) {    this.order = order;  }  public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {    /**@todo: finish this method, this is just the skeleton.*/    return null;  }  public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {    catalog = null;    order = null;  }  public java.util.Collection getCatalogs() {    return catalogs;  }  public void setCatalogs(java.util.Collection catalogs) {    this.catalogs = catalogs;  }}

⌨️ 快捷键说明

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