📄 msmallclassform.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="msmallclassForm"
*/
public class MsmallclassForm extends ActionForm {
/*
* Generated fields
*/
/** msc_id property */
private int msc_id;
/** msc_name property */
private String msc_name;
/** msc_mbc_id property */
private int msc_mbc_id;
/*
* 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 msc_id.
* @return int
*/
public int getMsc_id() {
return msc_id;
}
/**
* Set the msc_id.
* @param msc_id The msc_id to set
*/
public void setMsc_id(int msc_id) {
this.msc_id = msc_id;
}
/**
* Returns the msc_name.
* @return String
*/
public String getMsc_name() {
return msc_name;
}
/**
* Set the msc_name.
* @param msc_name The msc_name to set
*/
public void setMsc_name(String msc_name) {
this.msc_name = msc_name;
}
/**
* Returns the msc_mbc_id.
* @return int
*/
public int getMsc_mbc_id() {
return msc_mbc_id;
}
/**
* Set the msc_mbc_id.
* @param msc_mbc_id The msc_mbc_id to set
*/
public void setMsc_mbc_id(int msc_mbc_id) {
this.msc_mbc_id = msc_mbc_id;
}
public MsmallclassForm(int msc_id, String msc_name, int msc_mbc_id) {
super();
this.msc_id = msc_id;
this.msc_name = msc_name;
this.msc_mbc_id = msc_mbc_id;
}
public MsmallclassForm() {
super();
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -