📄 delarchiveform.java
字号:
/*
*
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
*
*/
package com.stsc.archive.file;
import java.text.ParseException;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import java.util.Date;
/**
* Form bean for the archive page. This form has the following fields,
* @author Yushirui
* @version $Revision: 1.0 $ $Date: 2003/04/14 10:42:08 $
*/
public final class delArchiveForm extends ActionForm {
private String serialno = null;
private String temp = null;
private String action = null;
// ----------------------------------------------------------- Properties
/**
* Return the action.
*/
public String getAction() {
return (this.action);
}
/**
* Set the action.
*
* @param action The new action
*/
public void setAction(String action) {
this.action = action;
}
/**
* Return the serialno.
*/
public String getSerialno() {
return (this.serialno);
}
/**
* Set the serialno.
*
* @param serialno The new serialno
*/
public void setTemp(String temp) {
this.temp = temp;
}
public String getTemp() {
return (this.temp);
}
/**
* Set the serialno.
*
* @param serialno The new serialno
*/
public void setSerialno(String serialno) {
this.serialno = serialno;
}
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
return errors;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -