📄 viewpopedomform.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -