In my Java Swing project I have a button and I added an ActionListener to this button. When click it ;to do something. However when I put a breakpoint in this anonymous inner class and debug it;the breakpoint doesn't been noticed by program. It is running without stop and doing nothing. I wrote for example
>> System.out.println("Hello_Jacks");
in this anonymous inner class and I see
>> Hello_Jacks
on the console. I didn't understand the working principle. What should I do for break point?