public interface NotificationProjectService
Modifier and Type | Method and Description |
---|---|
void |
notifyGlobal(com.intellij.notification.NotificationType type,
String title,
String subtitle,
String content)
Emits an application level notification (not for a specific project).
|
void |
notifyProject(com.intellij.notification.NotificationType type,
String title,
String subtitle,
String content)
Emits a notification that is related to an IDE project.
|
void notifyProject(com.intellij.notification.NotificationType type, String title, String subtitle, String content)
type
- roughly, message criticity.title
- notification title (gets seen first)subtitle
- subtitle that gets seen when the notification pops.content
- the notification contents, more details that are displayed when the user opens the event or the event log.void notifyGlobal(com.intellij.notification.NotificationType type, String title, String subtitle, String content)
type
- roughly, message criticity.title
- notification title (gets seen first)subtitle
- subtitle that gets seen when the notification pops.content
- the notification contents, more details that are displayed when the user opens the event or the event log.Copyright © 2018-2019 Henix. All Rights Reserved.