newygform.java

来自「Eclips+tomcat基于struts开发的一个员工系统的小例子」· Java 代码 · 共 132 行

JAVA
132
字号
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.8.4/xslt/JavaClass.xslpackage com.zhang.form;import org.apache.struts.action.ActionForm;/** * MyEclipse Struts Creation date: 02-27-2006 *  * XDoclet definition: *  * @struts:form name="newygForm" */public class NewygForm extends ActionForm {	// --------------------------------------------------------- Instance	// Variables	/** sex property */	private String sex;	/** bumen property */	private String bumen;	/** ygname property */	private String ygname;	/** bz property */	private String bz;	/** duty property */	private String duty;	// --------------------------------------------------------- Methods	/**	 * Returns the sex.	 * 	 * @return String	 */	public String getSex() {		return sex;	}	/**	 * Set the sex.	 * 	 * @param sex	 *            The sex to set	 */	public void setSex(String sex) {		this.sex = sex;	}	/**	 * Returns the bumen.	 * 	 * @return String	 */	public String getBumen() {		return bumen;	}	/**	 * Set the bumen.	 * 	 * @param bumen	 *            The bumen to set	 */	public void setBumen(String bumen) {		this.bumen = bumen;	}	/**	 * Returns the ygname.	 * 	 * @return String	 */	public String getYgname() {		return ygname;	}	/**	 * Set the ygname.	 * 	 * @param ygname	 *            The ygname to set	 */	public void setYgname(String ygname) {		this.ygname = ygname;	}	/**	 * Returns the bz.	 * 	 * @return String	 */	public String getBz() {		return bz;	}	/**	 * Set the bz.	 * 	 * @param bz	 *            The bz to set	 */	public void setBz(String bz) {		this.bz = bz;	}	/**	 * Returns the duty.	 * 	 * @return String	 */	public String getDuty() {		return duty;	}	/**	 * Set the duty.	 * 	 * @param duty	 *            The duty to set	 */	public void setDuty(String duty) {		this.duty = duty;	}}

⌨️ 快捷键说明

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