bulletinaction.java

来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 40 行

JAVA
40
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.csu.crm.bulletin.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.csu.crm.bulletin.form.BulletinForm;

/**
 * 
 * @author 3eCRM小组:曾东
 * @since 2007-9-30 下午04:07:41
 * @version 1.0 创建时间:2007-9-30 下午04:07:41,初始版本
 */
public class BulletinAction extends Action {
	/*
	 * Generated Methods
	 */

	/** 
	 * Method execute
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		BulletinForm bulletinForm = (BulletinForm) form;// TODO Auto-generated method stub
		return null;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?