⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addphotoform.java

📁 openblog是一个博客管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package org.openblog.struts.photo.form;

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: 12-16-2008
 * 
 * XDoclet definition:
 * @struts.form name="addPhotoForm"
 */
public class AddPhotoForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** imagename property */
	private String imagename;

	/** filename property */
	private String filename;

	/** updatetime property */
	private String updatetime;

	/** categoryid property */
	private String categoryid;
	
	private String photoinfo;

	/*
	 * Generated Methods
	 */

	public String getPhotoinfo() {
		return photoinfo;
	}

	public void setPhotoinfo(String photoinfo) {
		this.photoinfo = photoinfo;
	}

	/** 
	 * 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 imagename.
	 * @return String
	 */
	public String getImagename() {
		return imagename;
	}

	/** 
	 * Set the imagename.
	 * @param imagename The imagename to set
	 */
	public void setImagename(String imagename) {
		this.imagename = imagename;
	}

	/** 
	 * Returns the filename.
	 * @return String
	 */
	public String getFilename() {
		return filename;
	}

	/** 
	 * Set the filename.
	 * @param filename The filename to set
	 */
	public void setFilename(String filename) {
		this.filename = filename;
	}

	/** 
	 * Returns the updatetime.
	 * @return String
	 */
	public String getUpdatetime() {
		return updatetime;
	}

	/** 
	 * Set the updatetime.
	 * @param updatetime The updatetime to set
	 */
	public void setUpdatetime(String updatetime) {
		this.updatetime = updatetime;
	}

	/** 
	 * Returns the categoryid.
	 * @return String
	 */
	public String getCategoryid() {
		return categoryid;
	}

	/** 
	 * Set the categoryid.
	 * @param categoryid The categoryid to set
	 */
	public void setCategoryid(String categoryid) {
		this.categoryid = categoryid;
	}
}

⌨️ 快捷键说明

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