Re: Bootstrapping in Java9

2016-06-21 Thread Tomas Mikula
Thanks for the links, Kevin. By a quick glimpse, it seems like Tom's proposal could be used to solve all three. Tomas On Tue, Jun 21, 2016 at 11:53 AM, Kevin Rushforth < kevin.rushfo...@oracle.com> wrote: > As Thomas notes, this is independent of JDK 9 or Jigsaw. We have a couple > similar RFEs

Re: Bootstrapping in Java9

2016-06-21 Thread Kevin Rushforth
As Thomas notes, this is independent of JDK 9 or Jigsaw. We have a couple similar RFEs filed: JDK-8092262 : Add Application.launch(ApplicationFactory,String... args) JDK-8091703 : Support for De

Re: Bootstrapping in Java9

2016-06-21 Thread Tomas Mikula
I think what Tom proposes makes sense even regardless of Java 9. Another benefit is not requiring a no-arg constructor. Regards, Tomas On Tue, Jun 21, 2016 at 5:19 AM, Tom Schindl wrote: > Hi, > > I was playing around with Java9 a bit yesterday things worked fine but > what disturbs me a bit is

Bootstrapping in Java9

2016-06-21 Thread Tom Schindl
Hi, I was playing around with Java9 a bit yesterday things worked fine but what disturbs me a bit is that I need to export the package with my Application-Subclass because naturally Java9 can not create an instance of none-exported class with reflection. Although not being a big problem it distur