Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 46cbf1d4dfdb282a5043672173174fc81af3df67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.cdt.debug.core.model;

/**
 *
 * Enter type comment.
 * 
 * @since: Sep 30, 2002
 */
public interface ICDebugTargetType
{
	public static final int TARGET_TYPE_UNKNOWN = 0;
	public static final int TARGET_TYPE_LOCAL_RUN = 1;
	public static final int TARGET_TYPE_LOCAL_ATTACH = 2;
	public static final int TARGET_TYPE_LOCAL_CORE_DUMP = 3;
	
	/**
	 * Returns the type of this target.
	 * 
	 * @return the type of this target
	 */
	int getTargetType();
}

Back to the top