?? findform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.nitpro.struts.form;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* 用戶進行資料檢索時提供的Form
* @author 鄧錦溏
* @version 1.0
* 時間: 04-19-2008
* @struts.form name="findForm"
*/
public class FindForm extends ActionForm {
/*
* Generated fields
*/
/**
*
*/
private static final long serialVersionUID = -4550071929574194983L;
/** materialdate property */
private Date materialdate;
/** materialtitle property */
private String materialtitle;
/** materialcontent property */
private String materialcontent;
/** username property */
private String username;
private String date;
/**
* Method validate
*
* @param mapping
* @param request
* @return ActionErrors
*/
public String getDate() {
return this.date;
}
public void setDate(String date) {
this.date = date;
}
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 materialdate.
*
* @return Date
*/
public Date getMaterialdate() {
return materialdate;
}
/**
* Set the materialdate.
*
* @param materialdate
* The materialdate to set
*/
public void setMaterialdate(Date materialdate) {
this.materialdate = materialdate;
}
/**
* Returns the materialtitle.
*
* @return String
*/
public String getMaterialtitle() {
return materialtitle;
}
/**
* Set the materialtitle.
*
* @param materialtitle
* The materialtitle to set
*/
public void setMaterialtitle(String materialtitle) {
this.materialtitle = materialtitle;
}
/**
* Returns the materialcontent.
*
* @return String
*/
public String getMaterialcontent() {
return materialcontent;
}
/**
* Set the materialcontent.
*
* @param materialcontent
* The materialcontent to set
*/
public void setMaterialcontent(String materialcontent) {
this.materialcontent = materialcontent;
}
/**
* Returns the username.
*
* @return String
*/
public String getUsername() {
return username;
}
/**
* Set the username.
*
* @param username
* The username to set
*/
public void setUsername(String username) {
this.username = username;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -