
So far I've tested it using Java 5 and Java 6 (64-bit) on Mac OS X 10.5. The Makefiles are configured to build ppc/i386/x86_64 and should work on 10.4 (although you will need to build it on 10.5). The API should degrade gracefully if it is run on a non-Mac system - it won't throw any errors, blow up or anything like that.
Basic code usage is shown below:
Code: Select all
Growl growl = GrowlUtils.getInstance("My Funky Java App");
growl.addNotification("Something has happened", true);
growl.register();
// snip
growl.sendNotification("Something has happened", "Notification!", "Wake up lazy bones!");
Code: Select all
ant run