C/C++ Supported Source Container Types Extension
Identifier:
org.eclipse.cdt.debug.core.supportedSourceContainerTypes
Description:
The extension point provides a mechanism for contributing source container types to the preference page "C/C++, Debug,Common Source Lookup Path".
Configuration Markup:
<!ELEMENT extension (sourceContainer+)+>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT sourceContainer EMPTY>
<!ATTLIST sourceContainer
id IDREF #REQUIRED>
- id - Value of this attribute must be a contribution to the extension point "org.eclipse.debug.core.sourceContainerTypes".
Examples:
In the above example, C debugger specifies that it supports absolutePath contaner type.
<extension
point="org.eclipse.cdt.debug.core.supportedSourceContainerTypes">
<sourceContainer
id="org.eclipse.cdt.debug.core.containerType.absolutePath"/>
</extension>
API Information:
Value of the attribute id must be a contribution to the extension point "org.eclipse.debug.core.sourceContainerTypes".
Copyright (c) 2009 Texas Instruments 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