Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view all the breakpoints in eclipse?

I am new to eclipse and I am unable to view all the breakpoints that I have placed. I even tried Window --> Show View --> Breakpoints but that is also not working.

like image 962
Anshuman Jasrotia Avatar asked Oct 11 '12 10:10

Anshuman Jasrotia


People also ask

How can I see breakpoints in Eclipse?

To define a breakpoint in your source code, right-click in the left margin in the Java editor and select Toggle Breakpoint. Alternatively, you can double-click on this position. The Breakpoints view allows you to delete and deactivate Breakpoints and modify their properties.

How do you find all breakpoints?

There is a window called Breakpoints window and after opening that you can see all the breakpoints in the application. To open the breakpoints window: Go to menu Bar > Debug > Windows > Breakpoints click. Or press Ctrl+Alt+B.


2 Answers

As other users have suggested, to view all breakpoints : Window-> Show View -> Breakpoints.

To delete them, there are three ways:

  1. select the breakpoint & click on the cross button displayed in the same view.
  2. select the breakpoint, right click & select remove. (You can also temporarily disable it & remove all the breakpoints from this menu.)
  3. Go to the breakpoint in your file & double-click it.
like image 151
RAS Avatar answered Oct 22 '22 08:10

RAS


Here is what worked for me, just today, Run-> Remove All Breakpoints

like image 34
Samir Rakshit Avatar answered Oct 22 '22 09:10

Samir Rakshit