List of usage examples for com.google.gwt.user.client.ui NotificationMole NotificationMole
public NotificationMole()
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(); }