JavaFX11 Modules & Jfoenix
See original GitHub issueTrying to modularize my javafx 10 application to 11and I start getting these errors when my application tries to load certain elements like the TabPane.
Caused by: java.lang.IllegalAccessError: class com.jfoenix.skins.JFXTabPaneSkin (in module com.jfoenix) cannot access class com.sun.javafx.scene.control.behavior.TabPaneBehavior (in module javafx.controls) because module javafx.controls does not export com.sun.javafx.scene.control.behavior to module com.jfoenix
Issue Analytics
- State:
- Created 5 years ago
- Comments:15
Top Results From Across the Web
How to fix jfoenix modules with javafx 11 - Stack Overflow
One way you can try fixing this is by adding the vm option for the required export:
Read more >Java – How to fix jfoenix modules with javafx 11 - iTecNote
So I'm adding my requires for module-info.java and finally got my program to load but as soon as tab pane wants to load...
Read more >How To Fix Jfoenix Modules With Javafx 11 - ADocLib
So I'm adding my requires for moduleinfo.java and finally got my program to load but as soon as tab pane wants to load...
Read more >How to fix jvm options exports javafx 11 to com.jfoenix on ...
[Solved]-How to fix jvm options exports javafx 11 to com.jfoenix on gradle ... If you are running a non modular project (you don't...
Read more >Overview (JavaFX 11)
JavaFX 11. All Classes. SEARCH: JavaScript is disabled on your browser. Modules. Module, Description. javafx.base. Defines the base APIs for the JavaFX UI ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
you need to add the proper export to your project when running / compiling. as most of internal JavaFX api is no longer accessible directly in Java 9+
Here we go