?? emploveform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.struts.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: 08-26-2007
*
* XDoclet definition:
* @struts.form name="emploveForm"
*/
public class EmploveForm extends ActionForm {
/*
* Generated fields
*/
/** lid property */
private String lid;
/** elid property */
private String elid;
/** eid property */
private String eid;
/*
* 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 lid.
* @return String
*/
public String getLid() {
return lid;
}
/**
* Set the lid.
* @param lid The lid to set
*/
public void setLid(String lid) {
this.lid = lid;
}
/**
* Returns the elid.
* @return String
*/
public String getElid() {
return elid;
}
/**
* Set the elid.
* @param elid The elid to set
*/
public void setElid(String elid) {
this.elid = elid;
}
/**
* Returns the eid.
* @return String
*/
public String getEid() {
return eid;
}
/**
* Set the eid.
* @param eid The eid to set
*/
public void setEid(String eid) {
this.eid = eid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -