blob: 9bc2515c822f91ef3f7756b67fd8fd71369a3d9f [file] [log] [blame]
/*
*(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.model.ICDIObject;
/**
*
* Represents the type of a variable.
*
* @since Apr 15, 2003
*/
public interface ICDIType extends ICDIObject {
/**
* Returns the name.
*
* @return the name of the data type
* @throws CDIException if this method fails.
*/
String getTypeName();
/**
* Returns a more desciptive name.
* @return
*/
String getDetailTypeName();
}