Skip to main content
summaryrefslogtreecommitdiffstats
blob: 86bbf9f450f50a83045166501dab2045ec1f3c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 * 
 */
package org.eclipse.cdt.debug.mi.internal.ui;

/**
 * 
 * Constant definitions for MI UI plug-in.
 * 
 * @since Oct 4, 2002
 */
public interface IMIUIConstants
{
	/**
	 * Plug-in identifier (value <code>"org.eclipse.cdt.debug.mi.ui"</code>).
	 */
	public static final String PLUGIN_ID = MIUIPlugin.getUniqueIdentifier();
}

Back to the top