| Package | com.vmware.core.events |
| Class | public class DataRefreshInvocationEvent |
| Inheritance | DataRefreshInvocationEvent flash.events.Event |
A component can handle this event to refresh itself.
| Method | Defined By | ||
|---|---|---|---|
DataRefreshInvocationEvent(type:String)
Constructs a new instance. | DataRefreshInvocationEvent | ||
| Constant | Defined By | ||
|---|---|---|---|
| EVENT_ID : String = dataRefreshInvocationEvent [static] | DataRefreshInvocationEvent | ||
| DataRefreshInvocationEvent | () | Constructor |
public function DataRefreshInvocationEvent(type:String)Constructs a new instance.
Parameterstype:String (default = NaN) |
| EVENT_ID | Constant |
public static const EVENT_ID:String = dataRefreshInvocationEvent
public class SomeDataViewMediator {
[EventHandler("{com.vmware.core.events.DataRefreshInvocationEvent.EVENT_ID}")]
public function onDataRefreshInvocationEvent(event:DataRefreshInvocationEvent):void {
// Refresh logic.
}
}