[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform] Re: Breakpoint View not refreshing for my debugger

I figured this out.  To get the breakpointView to refresh, you need to
invoke the fireBreakPointChanged() on all the breaakpoints your debugger 
supports.

for all breakpoints set that I own
          DebugPlugin.getDefault().getBreakPointManager().fireBreakpointChanged(breakpoint)


"Ross Yakulis" <ross@xxxxxxxxxxxxxxxxxxx> wrote in message 
news:gn2991$lr9$1@xxxxxxxxxxxxxxxxxxxx
>I have implemented a debugger for a custom environment (Callflow Debugger) 
>following the paper by
> DarinWright and Bjorn Freeman--Benson.  However,  I am having problems
> with the Breakpoints View refreshing.  When I send the DebugEvent.Create
> via DebugPlugin.getDefault().fireEventSet(....), I would expect a UI 
> refresh
> so that I can change the breakpoint icon from the default to the icon
> display when they are active in my IDebugModelPresentation class as
> happens when you are debugging Java.
>
> Everything else seems to generally be working except that.
>
> Ross Yakulis
>