Re: Use cases for java.lang.Module.addExports

2016-12-11 Thread Alan Bateman
On 12/12/2016 06:34, David Holmes wrote: Does addExports only affect reflective access to the module, or does it change all access? I'm trying to determine what the set of actions X will be such that: try { ; } catch () { execute( () -> mod.addExports(...)); // address the problem ; //

Use cases for java.lang.Module.addExports

2016-12-11 Thread David Holmes
Does addExports only affect reflective access to the module, or does it change all access? I'm trying to determine what the set of actions X will be such that: try { ; } catch () { execute( () -> mod.addExports(...)); // address the problem ; // now it succeeds } Thanks, David