--add-opens
:
--add-opens javafx.web/javafx.scene.web=ALL-UNNAMED --add-opens javafx.web/com.sun.webkit=ALL-UNNAMED
For information, you can use the --add-opens
runtime option to allow your code to access non-public members. This can be referred to as deep reflection. Libraries that do this deep reflection are able to access all members, private and public. To grant this type of access to your code, you use the --add-opens
option.
--add-opens module/package=target-module(,target-module)*
This allows the given module to open the specified package. The compiler will not produce any errors or warnings when this is used[1]
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.