I've created a component (a replication of a JSpinner) with a JTextfield, and two JButtons.
I've created ActionListeners on each of the JButtons to update the JTextfield.
In my main program, I've create new objects based on my new component.
I've added ActionListeners on my new objects.JButtons.
My new ActionListeners are firing BEFORE my component's ActionListeners.
Is there a way to REVERSE the firing order?
ie. The component's ActionListeners to fire BEFORE my object's ActionListeners.