wangting
2024-09-27 a3e87f78ee262ca9bb7d9b0c997639d5f3295890
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vci.client.uif.engine.common.api;
 
import com.vci.client.uif.engine.client.IRegionPanel;
 
public class CustomActionEvent {
    private IRegionPanel regionPanel = null;
    private Object source = null;
    public CustomActionEvent() {
        super();
    }
    public CustomActionEvent(IRegionPanel regionPanel, Object source) {
        super();
        this.regionPanel = regionPanel;
        this.source = source;
    }
    public IRegionPanel getRegionPanel() {
        return regionPanel;
    }
    public void setRegionPanel(IRegionPanel regionPanel) {
        this.regionPanel = regionPanel;
    }
    public Object getSource() {
        return source;
    }
    public void setSource(Object source) {
        this.source = source;
    }
    
}