blob: 0848be8582945ad0bca04da79d520440d4aec167 [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.CDIException;
import org.eclipse.cdt.debug.core.cdi.model.ICDIVariable;
/**
*
* Represents a value of a array type.
*
* @since April 15, 2003
*/
public interface ICDIArrayValue extends ICDIDerivedValue {
ICDIVariable[] getVariables(int index, int length) throws CDIException;
}