Eclipse breakpoint events
In my Eclipse plugin, I would like to be notified when a breakpoint is created, removed or disabled.
Is ther开发者_StackOverflowe an event that I can subscribe to for this?
Thanks, Alan
I haven't used it, but from the docs it looks like you might be interested in IBreakpointManager.
It looks like you should add an IBreakpointListener or an IBreakpointsListener to this.
Have a look at this help section: http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/debug_breakpoints.htm
精彩评论