Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bd514b5d7edd021f0f876289cff8d27a5bff5a6b (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*******************************************************************************
 * Copyright (c) 2003, 2006 QNX Software Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.ui;

/**
 * This interface documents the property constants used by the ICElement
 * property source.
 */

public interface ICElementPropertyConstants {
	/** 
	 * The <code>ICElement</code> property key for elf cpu.
	 */
	public static final String	P_ELF_CPU = "elf_cpu"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf text.
	 */
	public static final String	P_ELF_TEXT = "text"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf data.
	 */
	public static final String  P_ELF_DATA = "data"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf bss.
	 */
	public static final String	P_ELF_BSS = "bss"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf bss.
	 */
	public static final String	P_ELF_HAS_DEBUG = "debug"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf soname.
	 */
	public static final String  P_ELF_SONAME = "soname"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf type.
	 */
	public static final String  P_ELF_TYPE = "type"; //$NON-NLS-1$

	/** 
	 * The <code>ICElement</code> property key for elf type.
	 */
	public static final String  P_ELF_NEEDED = "needed"; //$NON-NLS-1$

	public static final String P_BINARY_FILE_CATEGORY = CUIMessages.getString("ICElementPropertyConstants.catagory"); //$NON-NLS-1$

}

Back to the top