HintForm.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:3k
源码类别:
Jsp/Servlet
开发平台:
Java
- //Created by MyEclipse Struts
- // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
- package com.oa.module.hints;
- 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-26-2008
- *
- * XDoclet definition:
- * @struts.form name="hintForm"
- */
- public class HintForm extends ActionForm {
- // --------------------------------------------------------- Instance Variables
- private String uno;
- private String hshowtype;
- private String hshowtime;
- private String haffair;
- private String hmeeting;
- private String hemail;
- private String hmemo;
- // --------------------------------------------------------- Methods
- public String getHaffair() {
- return haffair;
- }
- public void setHaffair(String haffair) {
- this.haffair = haffair;
- }
- public String getHemail() {
- return hemail;
- }
- public void setHemail(String hemail) {
- this.hemail = hemail;
- }
- public String getHmeeting() {
- return hmeeting;
- }
- public void setHmeeting(String hmeeting) {
- this.hmeeting = hmeeting;
- }
- public String getHmemo() {
- return hmemo;
- }
- public void setHmemo(String hmemo) {
- this.hmemo = hmemo;
- }
- public String getHshowtime() {
- return hshowtime;
- }
- public void setHshowtime(String hshowtime) {
- this.hshowtime = hshowtime;
- }
- public String getHshowtype() {
- return hshowtype;
- }
- public void setHshowtype(String hshowtype) {
- this.hshowtype = hshowtype;
- }
- public String getUno() {
- return uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- /**
- * 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) {
- }
- }