diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-29 07:23:10 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-29 07:23:10 +0000 |
commit | b3f7a4238e8b1aea74cab26c5fab09d15ae96dd0 (patch) | |
tree | 4779950140ea890de4a44777367389d7c1589113 | |
parent | f91209fef26400a0ee5acb095c9c134882622b4a (diff) | |
parent | 9e8bd4c9284f5ada1edaf0d8a1a798d5233edd92 (diff) | |
download | vaadin-framework-b3f7a4238e8b1aea74cab26c5fab09d15ae96dd0.tar.gz vaadin-framework-b3f7a4238e8b1aea74cab26c5fab09d15ae96dd0.zip |
Merge "Added helper for showing a notification with a description (#10401)"
-rw-r--r-- | server/src/com/vaadin/ui/Notification.java | 22 |
1 files changed, 22 insertions, 0 deletions
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 |