/**
  * Disables all breakpoints in the given file
  *
  * @param file
  */
 @Override
 public void disableAllBreakpoints(File file) {
   Iterator<BumpBreakpoint> it = bump_client.getAllBreakpoints().iterator();
   while (it.hasNext()) {
     BumpBreakpoint bp = it.next();
     if (file == null || (bp.getFile() != null && bp.getFile().equals(file)))
       disableBreakpoint(bp.getFile(), bp.getLineNumber());
   }
 }