-
Bug
-
Resolution: Fixed
-
P2
-
6
-
b95
-
generic
-
generic
The demo directory includes a demo of the functionality that allows users to define custom jconsole tabs. The demo creates a tab where you can execute JavaScript code interactively using the built-in JavaScript engine in Mustang. Since this demo is the only place where we include JavaScript source in the JDK (as far as I know), we can expect that users will look at it for good practices. So it is important that it define good practices.
jconsole.js includes a set of functions that are preloaded in the JavaScript interaction tab. Among these functions are implementations of some standard JavaScript (DOM 0) functions such as error, warn, alert, prompt, and confirm. However, these functions create a JOptionPane directly in the calling thread. If that thread is not the EDT, then this is bad Swing practice. It happens that in the jconsole demo, all JavaScript code *is* executed in the EDT, but users risk copying these functions into their own JavaScript code and calling them from threads other than the EDT. (Besides, it would be better if the demo did not execute the JavaScript code in the EDT; see 6445511.)
Ideally the functions should be rewritten to use the invokeLater functionality that is already present in jconsole.js. At the very least, they should be commented to say that they are only valid if called from the EDT.
jconsole.js includes a set of functions that are preloaded in the JavaScript interaction tab. Among these functions are implementations of some standard JavaScript (DOM 0) functions such as error, warn, alert, prompt, and confirm. However, these functions create a JOptionPane directly in the calling thread. If that thread is not the EDT, then this is bad Swing practice. It happens that in the jconsole demo, all JavaScript code *is* executed in the EDT, but users risk copying these functions into their own JavaScript code and calling them from threads other than the EDT. (Besides, it would be better if the demo did not execute the JavaScript code in the EDT; see 6445511.)
Ideally the functions should be rewritten to use the invokeLater functionality that is already present in jconsole.js. At the very least, they should be commented to say that they are only valid if called from the EDT.
- relates to
-
JDK-6445511 JConsole JavaScript plugin demo should not execute JavaScript from the EDT
-
- Resolved
-