田源
2024-09-27 c07a9afa70e53ae54e3586d6cb982e215ad8cb29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vci.client.uif.actions.client;
 
/**
 * 按钮Action 前置事件接口
 * @author xiongchao
 *
 */
public interface PostActionListener {
    /**
     * 响应前置事件
     * @param e 前置事件参数
     * @return
     * @throws Exception
     */
    public PostActionResult actionPerformed(PostActionEvent e) throws Exception;
}