📄 conferenceform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.9.210/xslt/JavaClass.xslpackage org.conference.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: 05-14-2006 * * XDoclet definition: * @struts:form name="conferenceForm" */public class ConferenceForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** comments property */ private String comments; /** title property */ private String title; private String date; /** address property */ private String address; /** Date property */ private String yyfrom; private String mmfrom; private String ddfrom; private String yyto; private String mmto; private String ddto; /** organizer property */ private String organizer; /** url property */ private String url; /** interest property */ private String interest; // --------------------------------------------------------- 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 comments. * @return String */ public String getComments() { return comments; } /** * Set the comments. * @param comments The comments to set */ public void setComments(String comments) { this.comments = comments; } /** * Returns the title. * @return String */ public String getTitle() { return title; } /** * Set the title. * @param title The title to set */ public void setTitle(String title) { this.title = title; } /** * Returns the address. * @return String */ public String getAddress() { return address; } /** * Set the address. * @param address The address to set */ public void setAddress(String address) { this.address = address; } /** * Returns the Date. * @return String */ /** * Returns the organizer. * @return String */ public String getOrganizer() { return organizer; } /** * Set the organizer. * @param organizer The organizer to set */ public void setOrganizer(String organizer) { this.organizer = organizer; } /** * Returns the url. * @return String */ public String getUrl() { return url; } /** * Set the url. * @param url The url to set */ public void setUrl(String url) { this.url = url; } /** * Returns the interest. * @return String */ public String getInterest() { return interest; } /** * Set the interest. * @param interest The interest to set */ public void setInterest(String interest) { this.interest = interest; } public String getDdfrom() { return ddfrom; } public void setDdfrom(String ddfrom) { this.ddfrom = ddfrom; } public String getDdto() { return ddto; } public void setDdto(String ddto) { this.ddto = ddto; } public String getMmfrom() { return mmfrom; } public void setMmfrom(String mmfrom) { this.mmfrom = mmfrom; } public String getMmto() { return mmto; } public void setMmto(String mmto) { this.mmto = mmto; } public String getYyfrom() { return yyfrom; } public void setYyfrom(String yyfrom) { this.yyfrom = yyfrom; } public String getYyto() { return yyto; } public void setYyto(String yyto) { this.yyto = yyto; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -