mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
9 lines
267 B
Java
9 lines
267 B
Java
import com.intellij.notification.Notification;
|
|
import com.intellij.notification.NotificationType;
|
|
|
|
public class NotificationGroupIdCompletion {
|
|
public static void main(String[] args) {
|
|
new Notification("<caret>", "Content", NotificationType.INFORMATION);
|
|
}
|
|
}
|