📄 getallflight_scheduleform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xslpackage com.yuanlf.struts.form;import hibernate.Fare;import hibernate.FlightSchedule;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: 04-11-2006 * * XDoclet definition: * @struts.form name="getAllFlight_scheduleForm" */public class GetAllFlight_scheduleForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** flight_day2 property */ private String flight_day2; /** destination property */ private String destination; /** depart_time property */ private String depart_time; /** journey_hrs property */ private String journey_hrs; /** origin property */ private String origin; /** flightno property */ private String flightno; /** flight_day1 property */ private String flight_day1; // --------------------------------------------------------- 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 flight_day2. * @return String */ public String getFlight_day2() { return flight_day2; } /** * Set the flight_day2. * @param flight_day2 The flight_day2 to set */ public void setFlight_day2(String flight_day2) { this.flight_day2 = flight_day2; } /** * Returns the destination. * @return String */ public String getDestination() { return destination; } /** * Set the destination. * @param destination The destination to set */ public void setDestination(String destination) { this.destination = destination; } /** * Returns the depart_time. * @return String */ public String getDepart_time() { return depart_time; } /** * Set the depart_time. * @param depart_time The depart_time to set */ public void setDepart_time(String depart_time) { this.depart_time = depart_time; } /** * Returns the journey_hrs. * @return String */ public String getJourney_hrs() { return journey_hrs; } /** * Set the journey_hrs. * @param journey_hrs The journey_hrs to set */ public void setJourney_hrs(String journey_hrs) { this.journey_hrs = journey_hrs; } /** * Returns the origin. * @return String */ public String getOrigin() { return origin; } /** * Set the origin. * @param origin The origin to set */ public void setOrigin(String origin) { this.origin = origin; } /** * 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; } /** * Returns the flight_day1. * @return String */ public String getFlight_day1() { return flight_day1; } /** * Set the flight_day1. * @param flight_day1 The flight_day1 to set */ public void setFlight_day1(String flight_day1) { this.flight_day1 = flight_day1; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -