📄 cstlostaction.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package org.jb.y2t308.team3.web.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.jb.common.web.action.BaseAction;
import org.jb.y2t308.team3.biz.CstLostBiz;
import org.jb.y2t308.team3.web.form.CstLostForm;
/**
* MyEclipse Struts
* Creation date: 02-21-2009
*
* XDoclet definition:
* @struts.action path="/lostRpt" name="cstLostForm" parameter="o" scope="request" validate="true"
*/
public class CstLostAction extends BaseAction {
/*
* Generated Methods
*/
private CstLostBiz cstLostBiz=null;
/**
* Method execute
* @param mapping
* @param form
* @param request
* @param response
* @return ActionForward
*/
public ActionForward toList(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
CstLostForm cstLostForm = (CstLostForm) form;// TODO Auto-generated method stub
return mapping.findForward("toList");
}
public ActionForward toConfirmList(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
CstLostForm cstLostForm = (CstLostForm) form;// TODO Auto-generated method stub
return mapping.findForward("toConfirmList");
}
public ActionForward toRelayList(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
CstLostForm cstLostForm = (CstLostForm) form;// TODO Auto-generated method stub
return mapping.findForward("toRelayList");
}
public void setCstLostBiz(CstLostBiz cstLostBiz) {
this.cstLostBiz = cstLostBiz;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -