Execution Environments

org.eclipse.pde.core.executionEnvironments

3.2

[Enter description of this extension point.]

<!ELEMENT extension (environment+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT environment EMPTY>

<!ATTLIST environment

id      CDATA #REQUIRED

profile CDATA #REQUIRED>


The following is an example of the executionEnvironments extension:
  

<extension point =

"org.eclipse.pde.core.executionEnvironments"

>

<environment id=

"J2SE-1.4"

profile=

"profiles/J2SE-1.4.profile"

/>

</extension>

In the example above, the ID matches the ID of an environment element declared in an org.eclipse.jdt.launching.executionEnvironments extension. The JRE profile for this execution environment is located at profiles/J2SE-1.4.profile in the declaring plug-in.

No Java code is required for this extension point.

The Eclipse SDK does not contribute extensions to this extension point.