viewpopedomform.java
来自「一套完整的档案管理系统」· Java 代码 · 共 48 行
JAVA
48 行
package com.stsc.archive.manage;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
/*
<b>ActionForm</b>
*/
public class ViewPopedomForm extends ActionForm
{
private String popedom = "";
private String roleId = "";
private String enterName = "";
public void setEnterName(String enterName)
{
this.enterName = enterName;
}
public String getEnterName()
{
return this.enterName;
}
public void setRoleId(String roleId)
{
this.roleId = roleId;
}
public String getRoleId()
{
return this.roleId;
}
public void setPopedom(String popedom)
{
this.popedom = popedom;
}
public String getPopedom()
{
return this.popedom;
}
public void reset(ActionMapping mapping, HttpServletRequest request)
{
this.popedom = "";
this.roleId = "";
this.enterName = "";
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?