Package | Description |
---|---|
org.openide.awt |
A set of utility classes pertaining to the visual appearance of NetBeans.
|
Modifier and Type | Method and Description |
---|---|
static NotificationDisplayer.Priority |
NotificationDisplayer.Priority.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationDisplayer.Priority[] |
NotificationDisplayer.Priority.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
abstract Notification |
NotificationDisplayer.notify(String title,
Icon icon,
JComponent balloonDetails,
JComponent popupDetails,
NotificationDisplayer.Priority priority)
Create and show new notification with customized content.
|
Notification |
NotificationDisplayer.notify(String title,
Icon icon,
JComponent balloonDetails,
JComponent popupDetails,
NotificationDisplayer.Priority priority,
NotificationDisplayer.Category category)
Create and show new notification with customized content.
|
Notification |
NotificationDisplayer.notify(String title,
Icon icon,
JComponent balloonDetails,
JComponent popupDetails,
NotificationDisplayer.Priority priority,
String categoryName)
Create and show new notification with customized content.
|
abstract Notification |
NotificationDisplayer.notify(String title,
Icon icon,
String detailsText,
ActionListener detailsAction,
NotificationDisplayer.Priority priority)
Create and show new notification.
|
Notification |
NotificationDisplayer.notify(String title,
Icon icon,
String detailsText,
ActionListener detailsAction,
NotificationDisplayer.Priority priority,
NotificationDisplayer.Category category)
Create and show new notification.
|
Notification |
NotificationDisplayer.notify(String title,
Icon icon,
String detailsText,
ActionListener detailsAction,
NotificationDisplayer.Priority priority,
String categoryName)
Create and show new notification.
|