InformationActionForm.java~19~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:2k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- package com.chinacannel.xlchemical.struts.ActionForm;
- import javax.servlet.http.*;
- import org.apache.struts.action.*;
- import org.apache.struts.upload.FormFile;
- public class InformationActionForm extends ActionForm {
- private String title;
- private String content;
- private Long id;
- private String key = "";
- private Long catID = new Long(0);
- private Long menuID = new Long(0);
- private FormFile informationImage = null;
- private Long imageID = new Long(0);
- public ActionErrors validate(ActionMapping actionMapping,
- HttpServletRequest httpServletRequest) {
- /** @todo: finish this method, this is just the skeleton.*/
- return null;
- }
- public void reset(ActionMapping actionMapping,
- HttpServletRequest servletRequest) {
- }
- public String getContent() {
- return content;
- }
- public String getTitle() {
- return title;
- }
- public Long getId() {
- return id;
- }
- public String getKey() {
- return key;
- }
- public Long getCatID() {
- return catID;
- }
- public Long getMenuID() {
- return menuID;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public void setCatID(Long catID) {
- this.catID = catID;
- }
- public void setMenuID(Long menuID) {
- this.menuID = menuID;
- }
- }