Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f8d74dda86d9791f11ee14c03388034dd40c368c (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
/*******************************************************************************
 * Copyright (c) 2013 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.debug.examples.internal.memory.core;

import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.DebugElement;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.IRegister;
import org.eclipse.debug.core.model.IRegisterGroup;

public class SampleRegisterGroup extends DebugElement implements IRegisterGroup {

	SampleRegister fRegister1;
	SampleRegister fRegister2;
	SampleStackFrame fFrame;

	public SampleRegisterGroup(SampleStackFrame frame) {
		super(frame.getDebugTarget());
		fFrame = frame;
	}

	@Override
	public String getName() throws DebugException {
		return Messages.SampleRegisterGroup_0;
	}

	@Override
	public IRegister[] getRegisters() throws DebugException {
		if (fRegister1 == null) {
			fRegister1 = new SampleRegister(fFrame, this, "eax"); //$NON-NLS-1$
		}

		if (fRegister2 == null) {
			fRegister2 = new SampleRegister(fFrame, this, "ebx"); //$NON-NLS-1$
		}

		return new IRegister[] { fRegister1, fRegister2 };
	}

	@Override
	public boolean hasRegisters() throws DebugException {
		return true;
	}

	@Override
	public String getModelIdentifier() {
		return fFrame.getModelIdentifier();
	}

	@Override
	public IDebugTarget getDebugTarget() {
		return fFrame.getDebugTarget();
	}

	@Override
	public ILaunch getLaunch() {
		return fFrame.getLaunch();
	}

}

Back to the top