wangting
2024-12-26 c4e17e16e32f396432303270004883da6ac27161
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;
}