-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b85
-
generic
-
generic
-
Verified
JConsole supports connect/disconnect/reconnect cycle. Most plugins would likely want to be notified for the connection state property change to deal with the disconnect/reconnect situation.
Currently the plugin would have to override the setContext() method with the following:
super.setContext(context);
context.addPropertyChangeListener(listener);
For any plugin which wants to register a listener has to do the same as above.
So having JConsolePlugin to implement PropertyChangeListener will improve the API.
Currently the plugin would have to override the setContext() method with the following:
super.setContext(context);
context.addPropertyChangeListener(listener);
For any plugin which wants to register a listener has to do the same as above.
So having JConsolePlugin to implement PropertyChangeListener will improve the API.
- relates to
-
JDK-6179281 Provide a jconsole plug-in interface to allow loading user defined tabs
- Closed