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>


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 This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0