📄 queryformatinterceptor.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -