hintform.java

来自「基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+」· Java 代码 · 共 114 行

JAVA
114
字号
//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) {
		                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
		
	}

	
}

⌨️ 快捷键说明

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