📄 gbookform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.jack.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: 03-31-2007
*
* XDoclet definition:
* @struts.form name="gbookForm"
*/
public class GbookForm extends ActionForm {
/*
* Generated fields
*/
/** gbre property */
private String gbre;
/** gbid property */
private int id;
/** gbtime property */
private String gbtime;
/** gbface property */
private String gbface;
/** gbretime property */
private String gbretime;
/** gbcontent property */
private String gbcontent;
/** gbip property */
private String gbip;
/** gbtitle property */
private String gbtitle;
/** gbmail property */
private String gbmail;
/** gbhide property */
private int gbhide;
/** gbuser property */
private String gbuser;
/*
* 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 gbre.
* @return String
*/
public String getGbre() {
return gbre;
}
/**
* Set the gbre.
* @param gbre The gbre to set
*/
public void setGbre(String gbre) {
this.gbre = gbre;
}
/**
* Returns the id.
* @return int
*/
public int getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(int id) {
this.id = id;
}
/**
* Returns the gbtime.
* @return String
*/
public String getGbtime() {
return gbtime;
}
/**
* Set the gbtime.
* @param gbtime The gbtime to set
*/
public void setGbtime(String gbtime) {
this.gbtime = gbtime;
}
/**
* Returns the gbface.
* @return String
*/
public String getGbface() {
return gbface;
}
/**
* Set the gbface.
* @param gbface The gbface to set
*/
public void setGbface(String gbface) {
this.gbface = gbface;
}
/**
* Returns the gbretime.
* @return String
*/
public String getGbretime() {
return gbretime;
}
/**
* Set the gbretime.
* @param gbretime The gbretime to set
*/
public void setGbretime(String gbretime) {
this.gbretime = gbretime;
}
/**
* Returns the gbcontent.
* @return String
*/
public String getGbcontent() {
return gbcontent;
}
/**
* Set the gbcontent.
* @param gbcontent The gbcontent to set
*/
public void setGbcontent(String gbcontent) {
this.gbcontent = gbcontent;
}
/**
* Returns the gbip.
* @return String
*/
public String getGbip() {
return gbip;
}
/**
* Set the gbip.
* @param gbip The gbip to set
*/
public void setGbip(String gbip) {
this.gbip = gbip;
}
/**
* Returns the gbtitle.
* @return String
*/
public String getGbtitle() {
return gbtitle;
}
/**
* Set the gbtitle.
* @param gbtitle The gbtitle to set
*/
public void setGbtitle(String gbtitle) {
this.gbtitle = gbtitle;
}
/**
* Returns the gbmail.
* @return String
*/
public String getGbmail() {
return gbmail;
}
/**
* Set the gbmail.
* @param gbmail The gbmail to set
*/
public void setGbmail(String gbmail) {
this.gbmail = gbmail;
}
/**
* Returns the gbhide.
* @return int
*/
public int getGbhide() {
return gbhide;
}
/**
* Set the gbhide.
* @param gbhide The gbhide to set
*/
public void setGbhide(int gbhide) {
this.gbhide = gbhide;
}
/**
* Returns the gbuser.
* @return String
*/
public String getGbuser() {
return gbuser;
}
/**
* Set the gbuser.
* @param gbuser The gbuser to set
*/
public void setGbuser(String gbuser) {
this.gbuser = gbuser;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -