Example usage for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR

List of usage examples for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR

Introduction

In this page you can find the example usage for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR.

Prototype

String NOTIFICATION_BAR

To view the source code for com.vaadin.ui.themes ValoTheme NOTIFICATION_BAR.

Click Source Link

Document

Styles the notification to span the entire width of the viewport.

Usage

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());
}