Re: Code review of jpackager tool (JEP 343)

2018-10-24 Thread Rachel Greenham
ah. as i only followed this list to follow progress on this, turns out I'm in the wrong place. :-) -- Rachel On 24/10/2018 13:10, Kevin Rushforth wrote: The code review for the jpackager tool, JEP 343, is underway: http://mail.openjdk.java.net/pipermail/core-libs-dev/2018-October/056186.html

JavaBeanObjectPropertyBuilder has incomplete generics support

2018-11-02 Thread Rachel Greenham
javax.beans.property.adapter.JavaBeanObjectPropertyBuilder seems to be only partially adapted for generics. The class itself has a generic type (class JavaBeanObjectPropertyBuilder) and its build() method returns JavaBeanObjectProperty, but the lack of other support means you can't fluently

Re: Using the jpackager

2018-11-09 Thread Rachel Greenham
, but probably not before jpackager itself is more mature. -- Rachel On 09/11/2018 21:34, Sverre Moe wrote: Den fre. 9. nov. 2018 kl. 16:22 skrev Rachel Greenham <mailto:rac...@merus.eu>>: Build the JRE needed using JLink, supplying the needed modules. The JLink task referenced is

Re: Using the jpackager

2018-11-09 Thread Rachel Greenham
FWIW what I'm doing to build a windows app for jpackager, in terms of gradle tasks, that isn't modular. I hope this cleans up over time, but this is the final result of having just got the damn thing to work! :-) I think *eventually* we'll have a single call to jpackager do the whole lot. But

Re: Using the jpackager

2018-11-09 Thread Rachel Greenham
On 09/11/2018 15:20, Rachel Greenham wrote: Have the jar task build the application as normal. Here's mine as an example. The important part is, you don't need to build a single fat jar, but you can include the dependent jars with the Class-Path line below. Mine isn't a JavaFX app, so I don't

Re: Filling the Packager gap - again

2019-01-14 Thread Rachel Greenham
There have been updates since then. In particular, you can now find it hosted here: https://jdk.java.net/jpackage/ What you download is an EA build of jdk-13 which includes jpackage. You just use the jpackage that's in that. (You don't have to use that JDK for anything else, just literally

Re: EventHandler not working in 11.0.2

2019-03-30 Thread Rachel Greenham
IntelliJ's code completion looks to be wrong then. Just delete the "(EventHandler)" On 27/03/2019 18:29, Andrew Munn wrote: How do I listen for mouse events in 11.0.2? IntelliJ's code completion suggests this: textField.addEventHandler(MouseEvent.MOUSE_ENTERED, (EventHandler) t -> { // do