小组修饰符

org.eclipse.team.ui.teamDecorators

3.2

此扩展点用来使资源库提供程序标识与提供了小组状态修饰的修饰符标识相关联。模型提供程序使用此扩展点来确定是否需要更新它们的模型元素的标签。

<!ELEMENT extension (teamDecorator)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT teamDecorator EMPTY>

<!ATTLIST teamDecorator

repositoryId       CDATA #REQUIRED

decoratorId        CDATA #REQUIRED

decoratedDirection CDATA #IMPLIED>

使资源库提供程序与修饰符相关联。



以下是 teamDecorators 扩展的示例:
   

<extension point=

"org.eclipse.team.ui.teamDecorators"

>

<teamDecorator decoratorId=

"org.eclipse.team.cvs.ui.decorator"

repositoryId=

"org.eclipse.team.cvs.core.cvsnature"

/>

</extension>

repositoryId 必须与使用 org.eclipse.team.core.repository 扩展点注册的提供程序的标识相对应。同样,decoratorId 必须与使用 org.eclipse.ui.decorators 扩展点注册的修饰符相对应。

没有直接与此扩展点相关联的实现。