I'm doing some testing of writing Cocoa apps with Java, and I've created a seperate nib file for the preferences panel.
In Objective-C, I just use [NSBundle loadNibNamed:owner:] to load nib files, however this doesn't appear to work with Java. Does anyone know how to do this?
I've tried NSBundle.loadNibNamed( "Preferences", this );, and several variations.