Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2827cd96018bb57e475563d7bfaab1d8f055f667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*******************************************************************************
 * Copyright (c) 2004, 2012 QNX Software Systems and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.debug.internal.core;

import java.util.Map;

import org.eclipse.cdt.debug.core.CDebugCorePlugin;
import org.eclipse.cdt.debug.core.ICBreakpointListener;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.IDebugTarget;

public class CBreakpointNotifier implements ICBreakpointListener {

	private static CBreakpointNotifier fInstance;

	public static CBreakpointNotifier getInstance() {
		if (fInstance == null) {
			fInstance = new CBreakpointNotifier();
		}
		return fInstance;
	}

	@Override
	public boolean installingBreakpoint(IDebugTarget target, IBreakpoint breakpoint) {
		boolean result = true;
		Object[] listeners = CDebugCorePlugin.getDefault().getCBreakpointListeners();
		for (int i = 0; i < listeners.length; ++i) {
			if (!((ICBreakpointListener) listeners[i]).installingBreakpoint(target, breakpoint))
				result = false;
		}
		return result;
	}

	@Override
	public void breakpointInstalled(IDebugTarget target, IBreakpoint breakpoint) {
		Object[] listeners = CDebugCorePlugin.getDefault().getCBreakpointListeners();
		for (int i = 0; i < listeners.length; ++i)
			((ICBreakpointListener) listeners[i]).breakpointInstalled(target, breakpoint);
	}

	@Override
	public void breakpointChanged(IDebugTarget target, IBreakpoint breakpoint, Map attributes) {
		Object[] listeners = CDebugCorePlugin.getDefault().getCBreakpointListeners();
		for (int i = 0; i < listeners.length; ++i)
			((ICBreakpointListener) listeners[i]).breakpointChanged(target, breakpoint, attributes);
	}

	@Override
	public void breakpointsRemoved(IDebugTarget target, IBreakpoint[] breakpoints) {
		Object[] listeners = CDebugCorePlugin.getDefault().getCBreakpointListeners();
		for (int i = 0; i < listeners.length; ++i)
			((ICBreakpointListener) listeners[i]).breakpointsRemoved(target, breakpoints);
	}
}

Back to the top