In order to debug strange behavior in a Swing-application I'd like to replace the AWT EventQueue with my own implementation.
Is this possible? How?
Just in case you are interested:
the implementation will be a simple wrapper around the normal Eventqueue, doing some logging.
the problem I'd like to debug is a TableCellEditor, which works fine in a little demo app, but when put in the real application, stopCellEditing gets called immediately, due to some event. I'd like to get access to the event in order to find out, where it is comming from.