blob: 50a3477bac0f25a264974476596279b700b74176 [file] [log] [blame]
/*
-----------------------------------------------------------------------
-- CHESS core plugin --
-- --
-- Copyright (C) 2011-2012 --
-- University of Padova, ITALY --
-- --
-- Author: Alessandro Zovi azovi@math.unipd.it --
-- --
-- All rights reserved. This program and the accompanying materials --
-- are made available under the terms of the Eclipse Public License --
-- v1.0 which accompanies this distribution, and is available at --
-- http://www.eclipse.org/legal/epl-v20.html --
-----------------------------------------------------------------------
*/
package org.polarsys.chess.core.notifications;
import org.eclipse.papyrus.infra.widgets.toolbox.notification.INotification;
import org.eclipse.papyrus.infra.widgets.toolbox.notification.Type;
import org.eclipse.papyrus.infra.widgets.toolbox.notification.builders.NotificationBuilder;
/**
* This class offers method to create popups to notify the user of errors or information.
*/
public class ResourceNotification {
/** The error popup. */
private static NotificationBuilder errorPopup = NotificationBuilder.createErrorPopup(null);
/** The warning popup. */
private static NotificationBuilder warningPopup = NotificationBuilder.createWarningPopup(null);
/** The info popup. */
private static NotificationBuilder infoPopup = new NotificationBuilder();//NotificationBuilder.createAsyncPopup(null);
/**
* Shows an error popup with the specified message.
*
* @param message the error message to show
* @return the INotification object
*/
public static INotification showError(String message){
errorPopup.setMessage(message);
return errorPopup.run();
}
/**
* Shows a warning popup with the specified message.
*
* @param message the warning message to show
* @return the INotification object
*/
public static INotification showWarning(String message){
warningPopup.setMessage(message);
return warningPopup.run();
}
/**
* Shows an information popup with the specified message.
*
* @param message the information message to show
* @return the INotification object
*/
public static INotification showInfo(String message){
infoPopup.setMessage(message);
infoPopup.setType(Type.WARNING);
return infoPopup.run();
}
/**
* Shows an message popup.
*
* @param message the message to show
* @return the INotification object
*/
public static INotification showOk(String message){
infoPopup.setMessage(message);
infoPopup.setType(Type.INFO);
return infoPopup.run();
}
}