Updated to JAVA 7
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-wizard-widget@86985 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
a0de2af926
commit
d2f759708e
|
@ -6,7 +6,7 @@ import com.google.gwt.core.client.EntryPoint;
|
|||
|
||||
public class WizardEntry implements EntryPoint {
|
||||
|
||||
@Override
|
||||
|
||||
public void onModuleLoad() {
|
||||
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ public class WizardWindow extends Window {
|
|||
|
||||
SelectHandler selectionHandler = new SelectHandler() {
|
||||
|
||||
@Override
|
||||
|
||||
public void onSelect(SelectEvent event) {
|
||||
TextButton button = (TextButton) event.getSource();
|
||||
String btnID = button.getId();
|
||||
|
@ -151,7 +151,7 @@ public class WizardWindow extends Window {
|
|||
|
||||
closeBtn.addSelectHandler(new SelectHandler() {
|
||||
|
||||
@Override
|
||||
|
||||
public void onSelect(SelectEvent event) {
|
||||
fireAborted();
|
||||
hide();
|
||||
|
@ -434,11 +434,10 @@ public class WizardWindow extends Window {
|
|||
ErrorMessageBox.showError(title, failureReason, failureDetails,
|
||||
new Callback<Dialog, Void>() {
|
||||
|
||||
@Override
|
||||
|
||||
public void onSuccess(Dialog result) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFailure(Void reason) {
|
||||
hide();
|
||||
fireFailed(throwable, failureReason, failureDetails);
|
||||
|
|
|
@ -35,7 +35,7 @@ public class ErrorMessageBox {
|
|||
box.getHideButton().setText(DETAILS);
|
||||
box.addHideHandler(new HideHandler() {
|
||||
|
||||
@Override
|
||||
|
||||
public void onHide(HideEvent event) {
|
||||
Dialog dialog = (Dialog) event.getSource();
|
||||
|
||||
|
|
|
@ -15,10 +15,9 @@ import com.google.gwt.core.client.Callback;
|
|||
*/
|
||||
public class NOPCallBack<T,F> implements Callback<T, F> {
|
||||
|
||||
@Override
|
||||
|
||||
public void onFailure(F reason) {}
|
||||
|
||||
@Override
|
||||
public void onSuccess(T result) {}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue