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

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

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


/**
 * 
 * Represents the value of a variable.
 * 
 * @since April 15, 2003
 */
public interface ICDIIntegralValue extends ICDIValue {

	public long longValue() throws CDIException;

	public int intValue() throws CDIException;
	
	public short shortValue() throws CDIException;

	public int byteValue() throws CDIException;

}

Back to the top