Perhaps you have pushed the Skip all Breakpoints button in the Breakpoints view.
Answer from Fabian Steeg on Stack OverflowPerhaps you have pushed the Skip all Breakpoints button in the Breakpoints view.
Thanks guys, this really saved my day too. I antecedently pressed on skip break points, if you did the same this will result on break point appearing with a backslash icon on them.
To bring it back to normal:
- Switch to Debug perspective.
- press on the breakpoints view tap -->> upper right hand corner of the screen, you also can go there by Window->show view-> breakpoints.
- 5th icon from the left you will see break point with backslash. press on that one.
To confirm, try putting break point on any line, and it should appear normally.
You've probably just pressed "Skip All Breakpoints" in the Breakpoint view - simply press it again.

Default key bindings are: Ctrl + Alt + B.
This doesn't exactly answer the OPs question, but when trying to double click to add break points, I was getting messages stating "this feature is not enabled".
I had to right click on the break point bar and select "Breakpoint Types" -> "C/C++ Breakpoints" instead of "Default". Then it worked fine.
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.
Here is what worked for me, just today, Run-> Remove All Breakpoints
Make sure that 'Run > Skip all breakpoints' is not enabled.
there can be many many reasons:
The most common ones:
- .java and .class are out of sync
- wrong version of the runtime JVM
- debug information removed from the generated class
- classpath mismatch, for instance eclipse compiles into bin/ and your runtime picks up classes from classes/ (this assumes, you also compile from the command line)
- Bad Eclipse installation
First try cleaning the project by using the clean function
Project > clean...
