<!ELEMENT extension (launchConfigurationTabGroup*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT launchConfigurationTabGroup (launchMode*)>
<!ATTLIST launchConfigurationTabGroup
id CDATA #REQUIRED
type CDATA #REQUIRED
class CDATA #REQUIRED
helpContextId CDATA #IMPLIED
description CDATA #IMPLIED>
ILaunchConfigurationTabGroup
的 Java 类的标准名称。<!ELEMENT launchMode EMPTY>
<!ATTLIST launchMode
mode CDATA #REQUIRED
perspective CDATA #IMPLIED
description CDATA #IMPLIED>
启动方式元素指定此标签组适用于的启动方式。标签组可以与一种或多种启动方式相关联。为了保持向后兼容性(在 3.0 之前),不需要指定启动方式。当未指定此项时,标签组被注册为相关联的启动配置类型的缺省标签组(即,适用于尚未将特定标签组添加至的所有受支持的启动方式)。
在上面的示例中,对于标识为 com.example.ExampleLaunchConfigurationTypeIdentifier 的启动配置类型,将显示所添加的标签组。<extension point=
"org.eclipse.debug.ui.launchConfigurationTabGroups"
>
<launchConfigurationTabGroup id=
"com.example.ExampleTabGroup"
type=
"com.example.ExampleLaunchConfigurationTypeIdentifier"
class=
"com.example.ExampleLaunchConfigurationTabGroupClass"
>
</launchConfigurationTabGroup>
</extension>
class
属性的值必须是实现 org.eclipse.debug.ui.ILaunchConfigurationTabGroup
接口的 Java 类的标准名称。
Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which
accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html