blob: 554f416a99c5f5c2b9893bbca3351a237e180528 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.core.model;
import org.eclipse.debug.core.DebugException;
/**
* Enter type comment.
*
* @since Mar 10, 2003
*/
public interface ICastToArray extends ICastToType
{
boolean supportsCastToArray();
void castToArray( int startIndex, int length ) throws DebugException;
}