I\'ve been working with event listeners in AS3, but seems like there is none in java (except for graphics components). It\'s surprising.
The question is, how could i imp
You can implement kind of listeners in Java extending Observable class for the objects you want to observe, and on the listeners, you implement Observer.