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.
-
6For me Window-> Show View -> Breakpoints show all breakpoints. Did you set breakpoint? – anber Oct 11 '12 at 10:28
-
Yes I did set the breakpoints and they also appear when I debug the application but I am unable to remove them now. – Anshuman Jasrotia Oct 11 '12 at 10:35
-
2Just select Breakpoint in Breakpoints View and press del button, or find string and "Toggle Breakpoint" – anber Oct 11 '12 at 10:50
11 Answers
As other users have suggested, to view all breakpoints : Window-> Show View -> Breakpoints.
To delete them, there are three ways:
- select the breakpoint & click on the cross button displayed in the same view.
- select the breakpoint, right click & select remove. (You can also temporarily disable it & remove all the breakpoints from this menu.)
- Go to the breakpoint in your file & double-click it.

- 8,100
- 16
- 64
- 86
On the top-right corner, there is a search bar(Quick Access). You can search for breakpoints there and select breakpoints from options. All the breakpoints will be listed down.

- 71
- 1
- 5
You can remove all breakpoints by following below steps. Go to
Run -> Remove All Breakpoints.
This will remove all breakpoints.

- 4,412
- 10
- 51
- 74

- 59
- 1
- 4
-
2The question is about how to view all breakpoints, not to remove all breakpoints – Andreas Oct 24 '19 at 07:57
-
Go to Windows->Show View->(Others)->(Debug)->Breakpoints->unchecked all debug points
and unchecked all debug points which you have checked, start in debug mode again. It worked for me.

- 39
- 2
For Oxygen.3a I use:
- Window > Perspective > Open perspective > debug, and it shows the breakpoints window by default.
- Then ALT + SHIFT + Q, B toggles the window (or Window > Show view > Breakpoints)

- 28,994
- 18
- 176
- 206
On Bottom there are many tabs like console ,Development Mode etc like wise Break Point also there you find all toggle break points.

- 1
- 2
This shows all the breakpoints in the project.
Window > Perspective > Open perspective > debug, and it shows the breakpoints window by default.

- 1
- 1
Go to Run > Remove All Breakpoints
-
2Wouldn’t this remove the break points? Original author is asking how to view (not remove) – bsheps Mar 22 '21 at 21:19