Since: 3.0
Description: This extension point defines a mechanism for defining refresh launch variables. Refresh launch variables are context launch variables that expand to a set of resources. These resources are intended to be refreshed when a launch configuration is executed.
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.refreshLaunchVariables"> <variable name="resource" expanderClass="com.example.RefreshResourceExpander" description="The selected resource"> </variable> </extension>