We are working on a Java program with a graphical interface, and we are looking for a tool that shows us which parts of the code are executed when clicking on the buttons in the graphical interface. Any suggestions? thanks in advance
Eclipse with debug mode can do this, you just need to set breakpoints in your listeners and click on buttons.
This works out of the box with eclipse ... a simple Debug debugger and it did.
Personally, I use the BlueJ debugger:
http://www.stfrank.com/debug-21.png
The easiest way is to use print statements. If you need more complexity, use either an IDE (e.g. Eclipse, NetBeans, etc.) in debug mode, or some sort of logging mechanism (e.g. log4j).
I am using Swing Explorer
Source: https://habr.com/ru/post/900131/More articles:https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/900126/how-to-declare-a-class-that-conforms-to-a-protocol-as-parameter-type&usg=ALkJrhhqwHrkqxVS0DKRr-X-bKMACJm4FgConvert OpenCV with Chessboard - c ++https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/900128/get-all-where-calls-using-expressionvisitor&usg=ALkJrhj-qJwN6QUIrwRc6Yu3SVmEMI3kxASet path in CMake (C ++, ImageMagick) - c ++How to emulate memory I / O - cWhat is the syntax for βoptionsβ in the Doctrine 2.1 @Column annotation? - doctrineHow to dynamically pass parameters to web.xml using weblogic 10.3.x? - parametersprogramming Spring MVC controller and jsp for HttpDelete - javaHow do you send a request using the HTTP DELETE request? - restRESTful thread? - restAll Articles