标识符:org.eclipse.debug.ui.launchConfigurationTabGroups
描述:此扩展点提供了一种机制用于为某类型的启动配置而将一组选项卡添加至启动配置对话框。
配置标记:
<!ELEMENT launchConfigurationTabGroup> <!ATTLIST launchConfigurationTabGroup
id CDATA #REQUIRED
type CDATA #REQUIRED
class CDATA #REQUIRED
id
指定此启动配置选项卡组的唯一标识符。type
指定此选项卡组适用于的启动配置类型(对应于启动配置类型扩展的标识)。class
指定实现 ILaunchConfigurationTabGroup
的 Java 类的全限定名。示例:
以下是启动配置选项卡组扩展点的一个示例:
<extension point="org.eclipse.debug.ui.launchConfigurationTabGroups"> <launchConfigurationTabGroup id="com.example.ExampleTabGroup" type="com.example.ExampleLaunchConfigurationTypeIdentifier" class="com.example.ExampleLaunchConfigurationTabGroupClass"> </launchConfigurationTabGroup> </extension>
在以上示例中,对于标识符为 com.example.ExampleLaunchConfigurationTypeIdentifier
的启动配置类型,已添加的选项卡组将显示在启动配置对话框中。
API 信息:属性 class 的值必须是实现接口 org.eclipse.debug.ui.ILaunchConfigurationTabGroup 的 Java 类的全限定名。