1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.vci.client.uif.engine.client.event;
|
| import java.util.EventObject;
|
| import com.vci.client.uif.engine.client.IRegionPanel;
|
| /**
| * event基础类,用户传递触发载体
| * @author VCI_STGK_Lincq
| *
| */
| public class UIEvent extends EventObject{
|
| /**
| *
| */
| private static final long serialVersionUID = -4279420497469523556L;
|
| public UIEvent(IRegionPanel source) {
| super(source);
| }
| }
|
|