architecture « Event « Java Swing Q&A





1. Bus or listeners/delegates in client-side Swing application?    stackoverflow.com

Building a client-side swing application what should be notified on a bus (application-wide message system, similar in concept to JMS but much simpler) and what should be notified using direct listeners? When ...

2. Java Architecture - Question about ActionListener Conventions    stackoverflow.com

I am making a user interface which shows graphs and manipulates graphs. The class extends JFrame implements ActionListener. The ActionListener then calls different classes to manipulate graphs depending on the action. ...

3. Swing event architecture    stackoverflow.com

I'm building a rich client application based on Swing. And I'm wondering what is the best architecture for event's handling. My classes are :

  • MyFrame
  • FirstPanel, with a jbutton
  • SecondPanel with a jLabel
I start the ...