use of com.haulmont.cuba.gui.screen.ScreenContext in project cuba by cuba-platform.
the class WebAbstractTable method showParseErrorNotification.
protected void showParseErrorNotification(String message) {
ScreenContext screenContext = UiControllerUtils.getScreenContext(getFrame().getFrameOwner());
screenContext.getNotifications().create(Notifications.NotificationType.TRAY).withDescription(message).show();
}
Aggregations