执行环境

org.eclipse.pde.core.executionEnvironments

3.2

[输入此扩展点的描述。]

<!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>


以下是 executionEnvironments 扩展的一个示例:
  

<extension point =

"org.eclipse.pde.core.executionEnvironments"

>

<environment id=

"J2SE-1.4"

profile=

"profiles/J2SE-1.4.profile"

/>

</extension>

在以上示例中,标识与 org.eclipse.jdt.launching.executionEnvironments 扩展中声明的 environment 的标识匹配。此执行环境的 JRE 概要文件是声明插件中的 profiles/J2SE-1.4.profile

此扩展点不需要任何 Java 代码。

Eclipse SDK 未添加此扩展点的扩展。