com.intellij.xdebugger.breakpoints.XBreakpointHandler Java Examples

The following examples show how to use com.intellij.xdebugger.breakpoints.XBreakpointHandler. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ContextAwareDebugProcess.java    From mule-intellij-plugins with Apache License 2.0 5 votes vote down vote up
@Override
@NotNull
public XBreakpointHandler<?>[] getBreakpointHandlers() {
    List<XBreakpointHandler> breakpointHandlers = new ArrayList<>();
    final Collection<XDebugProcess> values = debugProcesses.values();
    for (XDebugProcess value : values) {
        breakpointHandlers.addAll(Arrays.asList(value.getBreakpointHandlers()));
    }
    return breakpointHandlers.toArray(new XBreakpointHandler[breakpointHandlers.size()]);
}
 
Example #2
Source File: WeaveDebugProcess.java    From mule-intellij-plugins with Apache License 2.0 5 votes vote down vote up
@NotNull
@Override
public XBreakpointHandler<?>[] getBreakpointHandlers()
{
    final XBreakpointHandler<?>[] breakpointHandlers = super.getBreakpointHandlers();
    return ArrayUtil.append(breakpointHandlers, breakpointHandler);
}
 
Example #3
Source File: MuleDebugProcess.java    From mule-intellij-plugins with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  final XBreakpointHandler<?>[] breakpointHandlers = super.getBreakpointHandlers();
  return ArrayUtil.append(breakpointHandlers, muleBreakpointHandler);
}
 
Example #4
Source File: DartVmServiceDebugProcess.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
@NotNull
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return myBreakpointHandlers;
}
 
Example #5
Source File: DartVmServiceDebugProcess.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
@NotNull
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return myBreakpointHandlers;
}
 
Example #6
Source File: SkylarkDebugProcess.java    From intellij with Apache License 2.0 4 votes vote down vote up
@Override
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return new XBreakpointHandler[] {new SkylarkLineBreakpointHandler(this)};
}
 
Example #7
Source File: HaxeDebugRunner.java    From intellij-haxe with Apache License 2.0 4 votes vote down vote up
@Override
@NotNull
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return mBreakpointHandlers;
}
 
Example #8
Source File: XQueryDebugProcess.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@NotNull
@Override
public XBreakpointHandler<?>[] getBreakpointHandlers() {
    return xBreakpointHandlers;
}
 
Example #9
Source File: XDebugProcess.java    From consulo with Apache License 2.0 4 votes vote down vote up
/**
 * @return breakpoint handlers which will be used to set/clear breakpoints in the underlying debugging process
 */
@Nonnull
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return XBreakpointHandler.EMPTY_ARRAY;
}
 
Example #10
Source File: CppDebugProcess.java    From CppTools with Apache License 2.0 4 votes vote down vote up
@Override
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return myBreakpointManager.getBreakpointHandlers();
}
 
Example #11
Source File: CppBreakpointManager.java    From CppTools with Apache License 2.0 4 votes vote down vote up
public XBreakpointHandler<?>[] getBreakpointHandlers() {
  return myBreakpointHandlers;
}