How can I post a message to the eventqueue? I want to use this if a worker thread is ready with some code and wants the AWT to run some code. This code needs to support a very old browser, so I can't use any swingutils like invokeLater.
Created May 4, 2012
In it have a vector of Runnables. This is the vector where the worker thread queues up the work requests. In the components paint method implement the code to dequeue and execute all the Runnables in the vector. Then call onePixelByOnepixel.repaint();. This should eventually call the paint(Graphics g) of the 'onePixelByOnepixel' on the AWT thread.