I\'m a bit confused from what I\'ve heard Java doesn\'t do events.
But I know that it does GUI events.
Am I missing something? Does java have an event handli
As you already stated, you can do the exact same thing with the publisher-subscriber/Observer pattern. It just requires a bit more legwork.
And no, Java does not have native support for events, like C# does with delegates.