blob: 213d90563a56c0cef88f7c85dd320a8412f191f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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.model.IRegister;
import org.eclipse.debug.core.model.IRegisterGroup;
public class SampleRegister extends SampleVariable implements IRegister {
private SampleRegisterGroup fGroup;
SampleRegister(SampleStackFrame frame, SampleRegisterGroup group, String name) {
super(frame, name);
fGroup = group;
}
@Override
public IRegisterGroup getRegisterGroup() throws DebugException {
return fGroup;
}
}