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

📄 addtypeform.java

📁 用Struts+Hibernate+Spring做的新闻系统
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.news.struts.form;import java.util.List;import org.apache.struts.action.ActionForm;/**  * MyEclipse Struts * Creation date: 07-14-2006 *  * XDoclet definition: * @struts.form name="addtypeForm" */public class AddtypeForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** typedate property */	private String typeauthor;	/** typetitle property */	private String newtypetitle;		/** typelist property */	private List typelist;		/** typedate property */	private String newtypedate;		private String id;	private String strPageBreak;	// --------------------------------------------------------- Methods	public String getStrPageBreak() {		return strPageBreak;	}	public void setStrPageBreak(String strPageBreak) {		this.strPageBreak = strPageBreak;	}	public String getId() {		return id;	}	public void setId(String id) {		this.id = id;	}	public String getNewtypedate() {		return newtypedate;	}	/** 	 * Set the newtypedate.	 * @param newtypedate The newtypedate to set	 */	public void setNewtypedate(String newtypedate) {		this.newtypedate = newtypedate;	}	/** 	 * Returns the newtypetitle.	 * @return String	 */	public String getNewtypetitle() {		return newtypetitle;	}	/** 	 * Set the newtypetitle.	 * @param newtypetitle The newtypetitle to set	 */	public void setNewtypetitle(String newtypetitle) {		this.newtypetitle = newtypetitle;	}	public String getTypeauthor() {		return typeauthor;	}	public void setTypeauthor(String typeauthor) {		this.typeauthor = typeauthor;	}	public List getTypelist() {		return typelist;	}	public void setTypelist(List typelist) {		this.typelist = typelist;	}		public void add(Object obj){		typelist.add(obj);	}}

⌨️ 快捷键说明

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