List of usage examples for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR
String NOTIFICATION_BAR
To view the source code for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR.
Click Source Link
From source file:de.fatalix.app.view.login.LoginView.java
private void showNotification(Notification notification, String style) { // keep the notification visible a little while after moving the // mouse, or until clicked notification.setPosition(Position.TOP_CENTER); notification.setStyleName(ValoTheme.NOTIFICATION_BAR); notification.setDelayMsec(2000);/*from w w w .j a va 2 s .co m*/ notification.show(Page.getCurrent()); }