⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 roleform.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.example.web.actionform;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/**  * MyEclipse Struts * Creation date: 01-29-2007 *  * XDoclet definition: * @struts.form name="roleForm" */public class RoleForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** fileType property */	private String fileType;	/** memo property */	private String memo;	/** roleName property */	private String roleName;	/** content property */	private String content;	/** roleId property */	private String roleId;	/** unitId property */	private String unitId;	// --------------------------------------------------------- Methods	/** 	 * Method validate	 * @param mapping	 * @param request	 * @return ActionErrors	 */	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 fileType.	 * @return String	 */	public String getFileType() {		return fileType;	}	/** 	 * Set the fileType.	 * @param fileType The fileType to set	 */	public void setFileType(String fileType) {		this.fileType = fileType;	}	/** 	 * Returns the memo.	 * @return String	 */	public String getMemo() {		return memo;	}	/** 	 * Set the memo.	 * @param memo The memo to set	 */	public void setMemo(String memo) {		this.memo = memo;	}	/** 	 * Returns the roleName.	 * @return String	 */	public String getRoleName() {		return roleName;	}	/** 	 * Set the roleName.	 * @param roleName The roleName to set	 */	public void setRoleName(String roleName) {		this.roleName = roleName;	}	/** 	 * Returns the content.	 * @return String	 */	public String getContent() {		return content;	}	/** 	 * Set the content.	 * @param content The content to set	 */	public void setContent(String content) {		this.content = content;	}	/** 	 * Returns the roleId.	 * @return String	 */	public String getRoleId() {		return roleId;	}	/** 	 * Set the roleId.	 * @param roleId The roleId to set	 */	public void setRoleId(String roleId) {		this.roleId = roleId;	}	/** 	 * Returns the unitId.	 * @return String	 */	public String getUnitId() {		return unitId;	}	/** 	 * Set the unitId.	 * @param unitId The unitId to set	 */	public void setUnitId(String unitId) {		this.unitId = unitId;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -