List of usage examples for com.vaadin.ui Notification getDescription
public String getDescription()
From source file:de.unioninvestment.eai.portal.support.vaadin.junit.NotificationMatcher.java
License:Apache License
@Override public boolean matches(Object argument) { if (argument instanceof Notification) { Notification notification = (Notification) argument; if (Objects.equal(notification.getCaption(), caption) && Objects.equal(notification.getDescription(), description)) { return true; }// w w w .j a v a 2s. c o m } return false; }