use of com.intellij.notification.NotificationType in project intellij-plugins by JetBrains.
the class PhoneGapExecutableChecker method noPhoneGap.
private static void noPhoneGap() {
String groupDisplayId = "PhoneGap notification";
String notificationTitle = "PhoneGap Plugin";
String notificationMessage = "PhoneGap/Cordova has incorrect executable path";
NotificationType notificationType = NotificationType.ERROR;
Notification notification = new Notification(groupDisplayId, notificationTitle, notificationMessage, notificationType);
Notifications.Bus.notify(notification);
}
Aggregations