Fixed Final and Lock error
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@100238 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
0c2dc5dfc9
commit
0473cdc603
|
@ -731,9 +731,9 @@ public class TabularDataController {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -777,9 +777,9 @@ public class TabularDataController {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -808,9 +808,9 @@ public class TabularDataController {
|
|||
"SDMX Export", eventBus);
|
||||
|
||||
exportWizard.addListener(new WizardListener() {
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -848,9 +848,9 @@ public class TabularDataController {
|
|||
trId,"Extract Codelist", eventBus);
|
||||
|
||||
extractCodelistWizard.addListener(new WizardListener() {
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title,message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -890,9 +890,9 @@ public class TabularDataController {
|
|||
trId,"Codelist Mapping Import", eventBus);
|
||||
|
||||
codelistMappingWizard.addListener(new WizardListener() {
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -930,9 +930,9 @@ public class TabularDataController {
|
|||
trId,"Union", eventBus);
|
||||
|
||||
unionWizard.addListener(new WizardListener() {
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -994,9 +994,9 @@ public class TabularDataController {
|
|||
resumeUIState();
|
||||
}
|
||||
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
@ -1027,9 +1027,9 @@ public class TabularDataController {
|
|||
|
||||
importWizard.addListener(new WizardListener() {
|
||||
|
||||
public void failed(Throwable throwable, String reason,
|
||||
String details) {
|
||||
UtilsGXT3.alert(reason, details);
|
||||
public void failed(String title, String message,
|
||||
Throwable throwable) {
|
||||
UtilsGXT3.alert(title, message);
|
||||
resumeUIState();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue