チーム・フック

ID: org.eclipse.core.resources.teamHook

2.1 以降

説明: TeamHook のインプリメンテーションを、 チーム・プロバイダーでのみ使用可能なメカニズムに使用する場合。 この拡張ポイントは 1 つの拡張しか 使用しません。

構成マークアップ:

   <!ELEMENT extension (teamHook)>

   <!ATTLIST extension
     point CDATA #REQUIRED
     id    CDATA #IMPLIED
     name  CDATA #IMPLIED
   >

   <!ELEMENT teamHook EMPTY>

   <!ATTLIST teamHook
     class CDATA #REQUIRED
   >

例: teamHook 拡張ポイントの使用例を以下に示します。 (ファイル plugin.xml)
   <extension point="org.eclipse.core.resources.teamHook"> 
      <teamHook class="org.eclipse.team.internal.TeamHook"/> 
</extension>

API 情報: class 属性の値は、org.eclipse.core.resources.team.TeamHook のサブクラスを表す必要があります。

提供されるインプリメンテーション: 一般に、 チーム・フックのインプリメンテーションは、Team コンポーネントが提供します。 拡張ポイントは、他のクライアントによって使用されることはありません。

Copyright (c) 2003 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html