queryformatinterceptor.java

来自「javaBB,一套很不錯的JSP源碼,特共享給大家」· Java 代码 · 共 49 行

JAVA
49
字号
/*
 * Copyright 23/04/2005 - Vicinity - www.vicinity.com All rights reserveds
 */
package org.javabb.interceptor;

import com.opensymphony.xwork.ActionInvocation;
import com.opensymphony.xwork.interceptor.Interceptor;


/**
 *
 * @author Marcos Silva Pereira - marcos.pereira@vicinity.com
 *
 * @since 23/04/2005
 *
 * @version $Id$
 */
public class QueryFormatInterceptor implements Interceptor {


	/**
	 * @see com.opensymphony.xwork.interceptor.Interceptor#destroy()
	 */
	public void destroy() {

		// TODO Auto-generated method stub

	}

	/**
	 * @see com.opensymphony.xwork.interceptor.Interceptor#init()
	 */
	public void init() {

		// TODO Auto-generated method stub

	}

	/**
	 * @see com.opensymphony.xwork.interceptor.Interceptor#intercept(com.opensymphony.xwork.ActionInvocation)
	 */
	public String intercept( ActionInvocation arg0 ) throws Exception {

		// TODO Auto-generated method stub
		return null;
	}

}

⌨️ 快捷键说明

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