LocalNotification n = new LocalNotification();
n.setId("Hello");
n.setAlertBody("Hello World");
n.setAlertTitle("Look Here");
n.setFireDate(System.currentTimeMillis() + 5000);
n.setRepeatType(LocalNotification.REPEAT_MINUTE);
n.setAlertSound("beep-01a.mp3");
Display.getInstance().sendLocalNotification(n);