Example usage for com.google.gwt.user.client.ui NotificationMole NotificationMole

List of usage examples for com.google.gwt.user.client.ui NotificationMole NotificationMole

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui NotificationMole NotificationMole.

Prototype

public NotificationMole() 

Source Link

Usage

From source file:edu.ucla.loni.pipeline.client.Notifications.LONINotifications.java

License:Open Source License

/**
 * Constructor/*from w  w w . j  av  a2  s .c  o m*/
 */
public LONINotifications() {
    notificationMole = new NotificationMole();
    helper = new LONINotificationsHelper(notificationMole);

    timer = new Timer() {
        @Override
        public void run() {
            notificationMole.hideNow();
        }
    };

    configureNotifications();
}