-
Enhancement
-
Resolution: Fixed
-
P4
-
jfx12
As part of decoupling JavaFX from the JDK we needed to change the implementation of FX / Swing interop to use public API provided in JDK 11 in the jdk.unsupported.desktop module.
As a transitional step, we allow building and running openjfx 11 with either JDK 10 or JDK 11. To achieve this, we created an abstraction layer with a few abstract classes, and an InteropFactory that provides one of two concrete implementations: an "old" JDK-10-based implementation and a "new", JDK-11-based implementation.
The old implementation is removed in openjfx12 byJDK-8210092, leaving only the new, JDK-11-based implementation. We could clean up the code by removing the abstraction layer and the factory class, and creating and using the new implementation classes directly.
The following classes make up the abstraction layer:
SwingNodeInterop
JFXPanelInterop
FXDnDInterop
SwingFXUtilsImplInterop
As a transitional step, we allow building and running openjfx 11 with either JDK 10 or JDK 11. To achieve this, we created an abstraction layer with a few abstract classes, and an InteropFactory that provides one of two concrete implementations: an "old" JDK-10-based implementation and a "new", JDK-11-based implementation.
The old implementation is removed in openjfx12 by
The following classes make up the abstraction layer:
SwingNodeInterop
JFXPanelInterop
FXDnDInterop
SwingFXUtilsImplInterop
- is blocked by
-
JDK-8210092 Remove old javafx.swing implementation
- Resolved