📄 editfoodform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
/**
* MyEclipse Struts
* Creation date: 09-06-2008
*
* XDoclet definition:
* @struts.form name="editfoodForm"
*/
public class EditfoodForm extends ActionForm {
/*
* Generated fields
*/
/** flargeimg property */
private FormFile flargeimg;
/** fmemo property */
private String fmemo;
/** fname property */
private String fname;
/** fstyle property */
private String fstyle;
/** fsmallimg property */
private FormFile fsmallimg;
/** fstate property */
private String fstate;
/** fprice property */
private String fprice;
/** fid property */
private String fid;
/** ftotal property */
private String ftotal;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
//this.fstyle = "1" ;
}
/**
* Returns the flargeimg.
* @return String
*/
/**
* Returns the fmemo.
* @return String
*/
public String getFmemo() {
return fmemo;
}
/**
* Set the fmemo.
* @param fmemo The fmemo to set
*/
public void setFmemo(String fmemo) {
this.fmemo = fmemo;
}
/**
* Returns the fname.
* @return String
*/
public String getFname() {
return fname;
}
/**
* Set the fname.
* @param fname The fname to set
*/
public void setFname(String fname) {
this.fname = fname;
}
/**
* Returns the fstyle.
* @return String
*/
public String getFstyle() {
return fstyle;
}
/**
* Set the fstyle.
* @param fstyle The fstyle to set
*/
public void setFstyle(String fstyle) {
this.fstyle = fstyle;
}
/**
* Returns the fsmallimg.
* @return String
*/
/**
* Returns the fstate.
* @return String
*/
public String getFstate() {
return fstate;
}
/**
* Set the fstate.
* @param fstate The fstate to set
*/
public void setFstate(String fstate) {
this.fstate = fstate;
}
/**
* Returns the fprice.
* @return String
*/
public String getFprice() {
return fprice;
}
/**
* Set the fprice.
* @param fprice The fprice to set
*/
public void setFprice(String fprice) {
this.fprice = fprice;
}
/**
* Returns the fid.
* @return String
*/
public String getFid() {
return fid;
}
/**
* Set the fid.
* @param fid The fid to set
*/
public void setFid(String fid) {
this.fid = fid;
}
/**
* Returns the ftotal.
* @return String
*/
public String getFtotal() {
return ftotal;
}
/**
* Set the ftotal.
* @param ftotal The ftotal to set
*/
public void setFtotal(String ftotal) {
this.ftotal = ftotal;
}
public FormFile getFlargeimg() {
return flargeimg;
}
public void setFlargeimg(FormFile flargeimg) {
this.flargeimg = flargeimg;
}
public FormFile getFsmallimg() {
return fsmallimg;
}
public void setFsmallimg(FormFile fsmallimg) {
this.fsmallimg = fsmallimg;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -