From 9e8bd4c9284f5ada1edaf0d8a1a798d5233edd92 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Wed, 28 Nov 2012 18:30:57 +0200 Subject: Added helper for showing a notification with a description (#10401) Change-Id: If51e73a62060384ae957af10efa270fb51c4ae8c --- server/src/com/vaadin/ui/Notification.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/server/src/com/vaadin/ui/Notification.java b/server/src/com/vaadin/ui/Notification.java index 758d2c86a3..226d15b110 100644 --- a/server/src/com/vaadin/ui/Notification.java +++ b/server/src/com/vaadin/ui/Notification.java @@ -392,4 +392,26 @@ public class Notification implements Serializable { public static void show(String caption, Type type) { new Notification(caption, type).show(Page.getCurrent()); } + + /** + * Shows a notification message the current page. The position and behavior + * of the message depends on the type, which is one of the basic types + * defined in {@link Notification}, for instance + * Notification.TYPE_WARNING_MESSAGE. + * + * The caption is rendered as plain text with HTML automatically escaped. + * + * @see #Notification(String, Type) + * @see #show(Page) + * + * @param caption + * The message + * @param description + * The message description + * @param type + * The message type + */ + public static void show(String caption, String description, Type type) { + new Notification(caption, description, type).show(Page.getCurrent()); + } } \ No newline at end of file -- cgit v1.2.3