📄 mbigclassform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.captainli.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: 11-19-2008
*
* XDoclet definition:
* @struts.form name="mbigclassForm"
*/
public class MbigclassForm extends ActionForm {
/*
* Generated fields
*/
/** mbc_id property */
private int mbc_id;
/** mbc_name property */
private String mbc_name;
/** mbc_type property */
private int mbc_type;
/*
* 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 mbc_id.
* @return int
*/
public int getMbc_id() {
return mbc_id;
}
/**
* Set the mbc_id.
* @param mbc_id The mbc_id to set
*/
public void setMbc_id(int mbc_id) {
this.mbc_id = mbc_id;
}
/**
* Returns the mbc_name.
* @return String
*/
public String getMbc_name() {
return mbc_name;
}
/**
* Set the mbc_name.
* @param mbc_name The mbc_name to set
*/
public void setMbc_name(String mbc_name) {
this.mbc_name = mbc_name;
}
/**
* Returns the mbc_type.
* @return int
*/
public int getMbc_type() {
return mbc_type;
}
/**
* Set the mbc_type.
* @param mbc_type The mbc_type to set
*/
public void setMbc_type(int mbc_type) {
this.mbc_type = mbc_type;
}
public MbigclassForm(int mbc_id, String mbc_name, int mbc_type) {
super();
this.mbc_id = mbc_id;
this.mbc_name = mbc_name;
this.mbc_type = mbc_type;
}
public MbigclassForm() {
super();
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -