Refresh Launch Variables

Identifier: org.eclipse.debug.core.refreshLaunchVariables

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
   >

Examples: The following is a definition of a refresh launch variable that expands to the selected resource:
 <extension point="org.eclipse.debug.core.refreshLaunchVariables">
   <variable
      name="resource"
      expanderClass="com.example.RefreshResourceExpander"
      description="The selected resource">
   </variable>
 </extension>

Copyright (c) 2000, 2003 IBM Corporation and others. All Rights Reserved.