> Say I had two class a and b defined like so
/snip uncompilable broken Java code/
> Normally, if the "Click Me" button is pressed, A's actionPerformed
> would be executed before B's. Is there a way so that the opposite
> occurs. Is there a way to reverse this?
No. The order in which listeners are called in unspecified
and your code cannot depend upon any particular implementation
calling order. The order can change when you move to another
platform, or by simply upgrading to the next release. Your
code is Broke As Designed (b.a.d.).