When developing java guis (e.g. swing) in eclipse, is there a built-in feature (or plugin) that allows one to monitor all the events that are fired?
When developing java guis (e.g. swing) in eclipse, is there a built-in feature (or
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.
You can also write an
AWTEventListeneron your own. Just add the following lines to your program.Replace the output with anything you like. You can also listen to particular events only by changing
-1to some constants fromAWTEvent.