List of usage examples for com.vaadin.ui.themes ValoTheme NOTIFICATION_SMALL
String NOTIFICATION_SMALL
To view the source code for com.vaadin.ui.themes ValoTheme NOTIFICATION_SMALL.
Click Source Link
From source file:dhbw.clippinggorilla.utilities.ui.VaadinUtils.java
public static void errorNotification(String caption, String description) { Notification not = new Notification(caption, null, Notification.Type.TRAY_NOTIFICATION, true); not.setDelayMsec(1000);//from w w w. ja v a 2 s. c o m not.setPosition(Position.TOP_CENTER); not.setStyleName(ValoTheme.NOTIFICATION_FAILURE + " " + ValoTheme.NOTIFICATION_SMALL); not.show(Page.getCurrent()); }