public void execute() {
//Some assets depend on the SuggestionCompletionEngine. This event is to notify them that the
//SuggestionCompletionEngine has been changed, they need to refresh their UI to represent the changes.
//set assetUUID to null means to refresh all asset editors contained by the specified package.
eventBus.fireEvent(new RefreshAssetEditorEvent(moduleName, null));
LoadingPopup.close();
}
} );
} else {
//No need to refresh other asset editors, refresh the current asset editor only.
eventBus.fireEvent( new RefreshAssetEditorEvent(moduleName, uuid));
}
}