📄 addmenufinfoform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.hnzt.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;
/**
* MyEclipse Struts
* Creation date: 08-24-2007
*
* XDoclet definition:
* @struts.form name="addmenufinfoForm"
*/
public class AddmenufinfoForm extends ActionForm {
/*
* Generated fields
*/
/** manufacturerAdd property */
private String manufacturerAdd;
/** level property */
private Integer level;
/** ophone property */
private String ophone;
/** boss property */
private String boss;
/** manufacturerName property */
private String manufacturerName;
/** mphone property */
private String mphone;
/** manufacturerNumber property */
private String manufacturerNumber;
/** password property */
private String password;
/** user property */
private String user;
/*
* 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
}
/**
* Returns the manufacturerAdd.
* @return String
*/
public String getManufacturerAdd() {
return manufacturerAdd;
}
/**
* Set the manufacturerAdd.
* @param manufacturerAdd The manufacturerAdd to set
*/
public void setManufacturerAdd(String manufacturerAdd) {
this.manufacturerAdd = manufacturerAdd;
}
/**
* Returns the level.
* @return Integer
*/
public Integer getLevel() {
return level;
}
/**
* Set the level.
* @param level The level to set
*/
public void setLevel(Integer level) {
this.level = level;
}
/**
* Returns the ophone.
* @return String
*/
public String getOphone() {
return ophone;
}
/**
* Set the ophone.
* @param ophone The ophone to set
*/
public void setOphone(String ophone) {
this.ophone = ophone;
}
/**
* Returns the boss.
* @return String
*/
public String getBoss() {
return boss;
}
/**
* Set the boss.
* @param boss The boss to set
*/
public void setBoss(String boss) {
this.boss = boss;
}
/**
* Returns the manufacturerName.
* @return String
*/
public String getManufacturerName() {
return manufacturerName;
}
/**
* Set the manufacturerName.
* @param manufacturerName The manufacturerName to set
*/
public void setManufacturerName(String manufacturerName) {
this.manufacturerName = manufacturerName;
}
/**
* Returns the mphone.
* @return String
*/
public String getMphone() {
return mphone;
}
/**
* Set the mphone.
* @param mphone The mphone to set
*/
public void setMphone(String mphone) {
this.mphone = mphone;
}
/**
* Returns the manufacturerNumber.
* @return String
*/
public String getManufacturerNumber() {
return manufacturerNumber;
}
/**
* Set the manufacturerNumber.
* @param manufacturerNumber The manufacturerNumber to set
*/
public void setManufacturerNumber(String manufacturerNumber) {
this.manufacturerNumber = manufacturerNumber;
}
/**
* Returns the password.
* @return String
*/
public String getPassword() {
return password;
}
/**
* Set the password.
* @param password The password to set
*/
public void setPassword(String password) {
this.password = password;
}
/**
* Returns the user.
* @return String
*/
public String getUser() {
return user;
}
/**
* Set the user.
* @param user The user to set
*/
public void setUser(String user) {
this.user = user;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -