Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 18e4a10ff5f41d4312e1ec2657a0f0af751d5808 (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
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */

package org.eclipse.cdt.debug.core.cdi.model;

import org.eclipse.cdt.debug.core.cdi.CDIException;

/**
 * 
 * A register is a special kind of variable that is contained
 * in a register group. Each register has a name and a value.
 * 
 * @since Jul 9, 2002
 */
public interface ICRegister extends ICVariable
{
	/**
	 * Returns the register group this register is contained in.
	 * 
	 * @return the register group this register is contained in
	 * @exception CDIException if this method fails.  Reasons include:
	 */
	ICRegisterGroup getRegisterGroup() throws CDIException; 
}

Back to the top