?? loveform.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="loveForm"
*/
public class LoveForm extends ActionForm {
/*
* Generated fields
*/
/** lid property */
private String lid;
/** lname property */
private String lname;
/*
* 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 lname.
* @return String
*/
public String getLname() {
return lname;
}
/**
* Set the lname.
* @param lname The lname to set
*/
public void setLname(String lname) {
this.lname = lname;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -