mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 22:43:40 +07:00
GitOrigin-RevId: 9a3332c5f8bb0a842e923cf83e16014968e81355
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);
|
|
}
|
|
}
|