JavaFX dependency injection

2015-11-21 Thread Nitin Malik
This was asked recently ( http://mail.openjdk.java.net/pipermail/openjfx-dev/2015-October/018080.html) but I didnt see this addressed. Are there plans to have better integration with DI frameworks for views and controllers? For example, we have scenarios where multiple instances of the same view

Re: Pausing Quantum Renderer

2015-11-21 Thread Johan Vos
I have a working implementation that needs more stress-testing on different platforms, but it seems a good and easy solution so far. I have this on QuantumToolkit: @Override public void pauseRenderer(){ Application.invokeAndWait(() -> this.pause = true);

Re: [9] API review request: 8090585: Provide an official API to start the JavaFX platform

2015-11-21 Thread Ali Ebrahimi
Hi, I think there is an inconsistency between : PlatformImpl.java public static void startup(final Runnable r) { +startup(r, false); //* here default value false + } and Platform.java +public static void startup(Runnable runnable) { +