Since: 3.0
Description: This extension point provides a mechanism for defining context sensitive launch configuration variables. Context launch variables derive their value dynamically based on a client defined context (for example, the selected resource). Context launch variables can be used as attribute values in launch configurations that support variable expansion.
Configuration Markup:
<!ELEMENT extension (variable*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT variable EMPTY>
<!ATTLIST variable
name CDATA #REQUIRED
expanderClass CDATA #REQUIRED
description CDATA #REQUIRED
>
<extension point="org.eclipse.debug.core.contextLaunchVariables"> <variable name="resource_name" expanderClass="com.example.ResourceNameExpander" description="The name of the selected resource"> </variable> </extension>