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;
|
}
|
|
}
|