VM 安装类型 UI 页面

标识符:org.eclipse.jdt.debug.ui.vmInstallTypePage

描述:此扩展点提供了一种机制来添加将出现在启动配置对话框的 JRE 选项卡中的 UI。仅当在 JRE 选项卡中选择了指定安装类型的 VM 时,才会显示该 UI。

配置标记:

   <!ELEMENT vmInstallTypePage>
   <!ATTLIST vmInstallTypePage

      id            CDATA #REQUIRED
      vmInstallTypeID          CDATA #REQUIRED
      class         CDATA #REQUIRED

示例:

以下是 VM 安装类型页面扩展点的示例:

<extension point="org.eclipse.jdt.debug.ui.vmInstallTypePage">
  <vmInstallTypePage
     id="com.example.ExampleVMInstallTypePage"
     vmInstallTypeID="com.example.ExampleVMInstallTypeIdentifier"
     class="com.example.ExampleVMInstallTypePage"
  </vmInstallTypePage>
</extension>

在以上示例中,每当当前选择的 JRE 具有 VM 安装类型标识符 com.example.ExampleVMInstallTypeIdentifier 时,添加的页面就将显示在启动配置对话框的 JRE 选项卡中。

API 信息:属性 class 的值必须是实现接口 org.eclipse.debug.ui.ILaunchConfigurationTab 的 Java 类的全限定名称。

Copyright IBM Corp. 2000, 2002. All Rights Reserved.