Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 18c4f44c6dfe7e1a607a69340bcfb2d5ac79fc07 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*******************************************************************************
 * 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;
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#installingBreakpoint(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint)
	 */
	@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;
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointInstalled(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint)
	 */
	@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);
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointChanged(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint)
	 */
	@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);
	}

	/*
	 * (non-Javadoc)
	 *
	 * @see org.eclipse.cdt.debug.core.ICBreakpointListener#breakpointsRemoved(org.eclipse.debug.core.model.IDebugTarget,
	 *      org.eclipse.debug.core.model.IBreakpoint[])
	 */
	@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