ADDITIONAL SYSTEM INFORMATION :
All systems.
A DESCRIPTION OF THE PROBLEM :
FXMLLoader is able to execute scripts in Java script languages (javax.script.ScriptEngine implementations) if such a Java script language gets defined as the controller language in the FXML file.
If a script engine implements the javax.script.Compilable interface, then such scripts could be compiled and the resulting javax.script.CompiledScript could be executed instead using its eval() methods.
Evaluating the CompiledScript objects may help speed up the execution of script invocations, especially for scripts defined for event attributes in FXML elements (e.g. like onMouseMove) which may be repetitevly invoked and evaluated.
All systems.
A DESCRIPTION OF THE PROBLEM :
FXMLLoader is able to execute scripts in Java script languages (javax.script.ScriptEngine implementations) if such a Java script language gets defined as the controller language in the FXML file.
If a script engine implements the javax.script.Compilable interface, then such scripts could be compiled and the resulting javax.script.CompiledScript could be executed instead using its eval() methods.
Evaluating the CompiledScript objects may help speed up the execution of script invocations, especially for scripts defined for event attributes in FXML elements (e.g. like onMouseMove) which may be repetitevly invoked and evaluated.
- csr for
-
JDK-8245873 FXMLLoader: if script engines implement javax.script.Compilable compile scripts
- Closed