pathtableform.java
来自「一套完整的档案管理系统」· Java 代码 · 共 47 行
JAVA
47 行
package com.stsc.archive.volumn;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
import com.stsc.archive.file.Constants;
public class pathtableForm extends ActionForm
{
private String enterName = "";
private String path = "";
private String backuppath="";
public void setenterName(String enterName)
{
this.enterName=enterName;
}
public String getenterName()
{
return this.enterName;
}
public void setPath(String path)
{
this.path=path;
}
public String getPath()
{
return this.path;
}
public void setBackuppath(String backuppath)
{
this.backuppath=backuppath;
}
public String getBackuppath()
{
return this.backuppath;
}
public void reset(ActionMapping mapping,HttpServletRequest req)
{
this.enterName = "";
this.path = "";
this.backuppath="";
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?