Acctaully i am implementing Model-View-Controller(MVC) and in controller class i have to know which view’s JButton have fired event.
Acctaully i am implementing Model-View-Controller(MVC) and in controller class i have to know which
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
getSource()method of the event:But you should probably avoid having a single ActionListener handle the events from multiple buttons in the first place. Each button should have its own responsibility, and hence be handled by a single listener.