📄 updatereservationform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xslpackage com.yuanlf.struts.form;import java.sql.Date;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-02-2006 * * XDoclet definition: * @struts.form name="updateReservationForm" */public class UpdateReservationForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** credit_card_no property */ private String credit_card_no; /** passport_no property */ private String passport_no; /** pass_name property */ private String pass_name; /** seatClass property */ private String seatClass; /** pass_address property */ private String pass_address; /** reserve_date property */ private Date reserve_date; /** tickno property */ private String tickno; /** flight_date property */ private Date flight_date; /** flightno property */ private String flightno; // --------------------------------------------------------- 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 credit_card_no. * @return String */ public String getCredit_card_no() { return credit_card_no; } /** * Set the credit_card_no. * @param credit_card_no The credit_card_no to set */ public void setCredit_card_no(String credit_card_no) { this.credit_card_no = credit_card_no; } /** * Returns the passport_no. * @return String */ public String getPassport_no() { return passport_no; } /** * Set the passport_no. * @param passport_no The passport_no to set */ public void setPassport_no(String passport_no) { this.passport_no = passport_no; } /** * Returns the pass_name. * @return String */ public String getPass_name() { return pass_name; } /** * Set the pass_name. * @param pass_name The pass_name to set */ public void setPass_name(String pass_name) { this.pass_name = pass_name; } /** * Returns the seatClass. * @return String */ public String getSeatClass() { return seatClass; } /** * Set the seatClass. * @param seatClass The seatClass to set */ public void setSeatClass(String seatClass) { this.seatClass = seatClass; } /** * Returns the pass_address. * @return String */ public String getPass_address() { return pass_address; } /** * Set the pass_address. * @param pass_address The pass_address to set */ public void setPass_address(String pass_address) { this.pass_address = pass_address; } /** * Returns the reserve_date. * @return String */ public Date getReserve_date() { return reserve_date; } /** * Set the reserve_date. * @param reserve_date The reserve_date to set */ public void setReserve_date(Date reserve_date) { this.reserve_date = reserve_date; } /** * Returns the tickno. * @return String */ public String getTickno() { return tickno; } /** * Set the tickno. * @param tickno The tickno to set */ public void setTickno(String tickno) { this.tickno = tickno; } /** * Returns the flight_date. * @return Date */ public Date getFlight_date() { return flight_date; } /** * Set the flight_date. * @param flight_date The flight_date to set */ public void setFlight_date(Date flight_date) { this.flight_date = flight_date; } /** * Returns the flightno. * @return String */ public String getFlightno() { return flightno; } /** * Set the flightno. * @param flightno The flightno to set */ public void setFlightno(String flightno) { this.flightno = flightno; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -