Re: Apple internal api's

2015-11-29 Thread Michael Hall
> On Nov 24, 2015, at 9:18 PM, Mandy Chung wrote: > > com.apple.eawt is in java.desktop module. Try this: > > java -XaddExports:java.desktop/com.apple.eawt=ALL-UNNAMED This one I had almost missed. For me, more fully, this had to be… -XaddExports:java.desktop/com.apple.eawt=ALL-UNNAMED,java.

Apple internal api's

2015-11-24 Thread Michael Hall
I know these are being addressed as part of JEP 272 [1], but for now. I have a shell script that will launch my OS X app with most of it’s functionality. I think some appleevent related won’t work as less than a full app, but the app should run. It is completely unmodularized at this point thoug

Re: Apple internal api's

2015-11-24 Thread Mandy Chung
com.apple.eawt is in java.desktop module. Try this: java -XaddExports:java.desktop/com.apple.eawt=ALL-UNNAMED Mandy > On Nov 24, 2015, at 5:52 PM, Michael Hall wrote: > > I know these are being addressed as part of JEP 272 [1], but for now. > I have a shell script that will launch my OS X ap