Updated UI event type

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@94946 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-04-17 09:41:23 +00:00
parent d894e4a0c9
commit 93d0dbfecd
1 changed files with 3 additions and 2 deletions

View File

@ -31,13 +31,14 @@ public class ChangeTableRequestEvent extends GwtEvent<ChangeTableRequestEvent.Ch
public HandlerRegistration addChangeTableRequestEventHandler(ChangeTableRequestEventHandler handler);
}
public static void fire(HasHandlers source, ChangeTableRequestType operationCompleteType, TRId trId, String why) {
public static void fire(HasHandlers source, ChangeTableRequestType operationCompleteType, TRId trId, ChangeTableWhy why) {
source.fireEvent(new ChangeTableRequestEvent(operationCompleteType,trId, why));
}
public ChangeTableRequestEvent(ChangeTableRequestType changeTableRequestType, TRId trId, String why) {
public ChangeTableRequestEvent(ChangeTableRequestType changeTableRequestType, TRId trId, ChangeTableWhy why) {
this.changeTableRequestType = changeTableRequestType;
this.trId = trId;
this.why=why;
}
public static Type<ChangeTableRequestEventHandler> getType() {