- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
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) {
- }
- }