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

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

Introduction

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

Prototype

String NOTIFICATION_SMALL

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

Click Source Link

Document

Smaller padding and font size for the notification.

Usage

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