I've been using JavaFX-11 for a while. I set JavaFX as a Global library in my Project structure. I also added all the modules inside as required in the module-info.class file of my project.
This is working fine, but now I need a Class, "WebPage", that's inside the javafx.web module.
Specifically, it's inside javafx.web.com.sun.webkit.WebPage.
However, my IDE, Intellij-IDEA doesn't access it. When I type the whole path the tooltip says that, Package 'com.sun.webkit' is declared in javafx.web, which does not export it to the module projectname.
I'm not so familiar with how module files work, but I noticed there is also a module info file inside javafx.web. However, it's read-only. How can I access this content?