blob: 093bd15e59ac84bcadcf49db516043aff0cf7e4f [file] [log] [blame]
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";
/**
* The <code>ICElement</code> property key for elf text.
*/
public static final String P_ELF_TEXT = "text";
/**
* The <code>ICElement</code> property key for elf data.
*/
public static final String P_ELF_DATA = "data";
/**
* The <code>ICElement</code> property key for elf bss.
*/
public static final String P_ELF_BSS = "bss";
/**
* The <code>ICElement</code> property key for elf bss.
*/
public static final String P_ELF_HAS_DEBUG = "debug";
/**
* The <code>ICElement</code> property key for elf soname.
*/
public static final String P_ELF_SONAME = "soname";
/**
* The <code>ICElement</code> property key for elf type.
*/
public static final String P_ELF_TYPE = "type";
/**
* The <code>ICElement</code> property key for elf type.
*/
public static final String P_ELF_NEEDED = "needed";
}