jNotifyOSD

A java API to show notifications, based on NiconNotifyOSD 2.0

alt jNotifyOSD-Screenshot

Some features:

IMPORTANT:

Example Usage

The following code will show a notification with all the default settings: sounds on, DEFAULT theme, ROUNDED border, RIGHT orientation, INFORMATION message, during 10 seconds.

import javax.swing.SwingUtilities;
import adbenitez.notify.Notification;

public class Demo {
    public Demo() {
        // Show default notification:
        Notification.show("Hello World!", "This is just a test.");
    }
    public static void main(String[] args) {
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            new Demo();
         }
      });
    }
}

Getting Help