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

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

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.DebugException;

/**
 * Enter type comment.
 * 
 * @since Mar 7, 2003
 */
public interface ICastToType extends IAdaptable
{
	boolean supportsCasting();
	
	String getCurrentType();
	
	void cast( String type ) throws DebugException;
	
	void restoreDefault() throws DebugException;
	
	boolean isCasted();
}

Back to the top