toggleBreakpoint
public boolean toggleBreakpoint(Context context,
                                Editor editor,
                                int line)
This method does nothing, but returns true to the caller indicating that we've
 fully handled the click.  This effectively disables setting of breakpoints in the
 node class this handler is bound to.   Useful for disabling breakpoints in text
 files or other file types that don't have breakpoint support, or types such as
 some XML files that require breakpoints be set via design view and not through
 the editor source view.
- Specified by:
 
toggleBreakpoint in interface oracle.ideimpl.debugger.extender.breakpoint.CommonToggleHandlerBase 
- Parameters:
 
context - The IDE context 
editor - The code editor where the gutter click was detected 
line - The line number where the gutter click was detected 
- Returns:
 
- true if the handle has completely handled the event; false if the core debugger
       should handle it.