- 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源码
GoodTypeForm.java
资源名称:Jason.rar [点击查看]
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:2k
源码类别:
MySQL数据库
开发平台:
Java
- /*
- * Generated by MyEclipse Struts
- * Template path: templates/java/JavaClass.vtl
- */
- package com.center.control;
- 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: 05-19-2007
- *
- * XDoclet definition:
- * @struts.form name="goodTypeForm"
- */
- public class GoodTypeForm extends ActionForm {
- /*
- * Generated fields
- */
- /** typetime property */
- private String typetime;
- /** typename property */
- private String typename;
- /*
- * Generated 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 typetime.
- * @return String
- */
- public String getTypetime() {
- return typetime;
- }
- /**
- * Set the typetime.
- * @param typetime The typetime to set
- */
- public void setTypetime(String typetime) {
- this.typetime = typetime;
- }
- /**
- * Returns the typename.
- * @return String
- */
- public String getTypename() {
- return typename;
- }
- /**
- * Set the typename.
- * @param typename The typename to set
- */
- public void setTypename(String typename) {
- this.typename = typename;
- }
- }