Hi !
I'm still trying out Spring AppContext features and i'm quite stuck with the event propagation. For the purpose of the exercice, i've a made a small swing app. I have an object for the interface with basicly display a window with a small text and a button.
My purpose is to publish the event "click on button".
Here's the swing code :
I don't really know how to publish my event so that Spring will listen to this event ...Code:pushMe.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) { onClickOnPushMe(e); } });


Reply With Quote