Geoff

Results 21 comments of Geoff

If `dynamic` makes it into the Java-side of kotlin, then you might be able to get your polymorphic extension functions with a ~simple~ ``` kotlin class A { } class...

> > If dynamic makes it into the Java-side of kotlin, then you might be able to get your polymorphic extension functions with a ~simple~ > > I know that...

I could put this together as a pull request if there is any interest. This shouldn't break either source compatibility or binary compatibility, but my solution, that is, embedding information...

@Maxoudela bump, this never made it in and I really need it.

Ok, so i pulled this and started trying to build with my java 17: - the gradlewrapper.settings was 6.X and java 17 [isnt supported until gradle 7.3](https://docs.gradle.org/current/userguide/compatibility.html), i figured you...

> @Groostav I just pushed https://github.com/controlsfx/controlsfx/pull/1460 to the master branch. The main branch now has Gradle 7+ in it. Hopefully, it will help with your Gradle issue. Thanks, this got...

OP's code to reproduce ```java import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.ContextMenu; import javafx.scene.control.MenuItem; import javafx.scene.control.TextArea; import javafx.scene.input.KeyCombination; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class AcceleratorTest extends Application { public void start(Stage...

> Currently `typeOf()` is still marked with `@ExperimentalStdlibApi` even on version 1.4.10 Thats a very good point, I'm sorry I missed it. I wonder how other DSL's using `reified T`...

I am still hoping to get back around to this, im just swamped

Regarding some functional testing notes: @Maxoudela you wrote ``` //For SpreadsheetView "--add-exports=javafx.controls/com.sun.javafx.scene.control.behavior.TableViewBehavior=org.controlsfx.controls", //For SpreadsheetView "--add-exports=javafx.base/com.sun.javafx.event.EventHandlerManager=org.controlsfx.controls" ``` but thats not riught syntactically and its redundant to the add-exports that are a...