NotificationsDemo notDemo = new NotificationsDemo();
tabs.addTab(notDemo, "FancyNotifications");
// Add notification to top most UI elements you have. Then just give it
// as reference to child components.
notifications = new FancyNotifications();
topLayout.addComponent(notifications);
notDemo.init(notifications);
return topLayout;
}