Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upJDK 12 incompatible #955
JDK 12 incompatible #955
Comments
|
and I guess this problem has something to do with this issue: |
|
Hi, we did face the relevant problem with the same component JFXTextFieldSkin while launching the application. Here is the exception. java.version : 12 we use java fx bundle 12 Thought this is relevant. Let me know if this needs to be created as a new issue |
|
I tried looking into it but @jfoenixadmin it seems that the branch I tried updating it but went over my head. |
|
@micheljung no worries, I'll do the merge now. |
|
Same problem here with jfoenix 9.0.9 |
|
I am also having a problem with jfoenix 9.0.9 and JDK 12 |
|
@jfoenixadmin not sure if you saw this already: |
|
@TheRedSpy15 that's how we are using reflection to access private fields. however I suspect that the field either renamed or removed thus causing this issue. |
|
I am facing this issue as well |
|
@jfoenixadmin when will get a fix for this :( |
|
is this fixed?? |
|
Not fixed yet |
|
Am also faced with the same issue java.lang.IllegalAccessException: class com.jfoenix.skins.JFXTextFieldSkin cannot access a member of class javafx.scene.control.skin.TextFieldSkin with modifiers "private" |
|
did any one resolve this issue ? |
|
Any fix? |
|
any fix ? |
|
Are there any plans for making JFoenix compatible with versions of Java greater than 11? |
|
any fix to the access block to JFXTextfield and JFXPassword in jdk12? |
|
@jfoenixadmin We need some kind of a fix for this bug please, I don't want to downgrade to jdk11 just for this issue :( |
|
Same here. Won't use the library as I am on JDK 14 / JavaFX 12 |
|
Same here
I am on JDK 14 and JavaFx 14, May be I have to downgrade to JDK 11? |
|
@viewv yes currently that is the only solution |
|
any fix ? |
Hi:
Today JDK 12 is released and one interesting change is they make javafx.scene.control.skin.TextFieldSkin members private
thus for JFoenix we will get some exception like:
java.lang.IllegalAccessException: class com.jfoenix.skins.JFXTextFieldSkin cannot access a member of class javafx.scene.control.skin.TextFieldSkin with modifiers "private"
at java.base/jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:355)
so any ideas how we should fix this problem?