フックの移動/削除

ID: org.eclipse.core.resources.moveDeleteHook

このリリース以降: 2.0

説明: IMoveDeleteHook のインプリメンテーションを IResource.move および IResource.delete メカニズムで使用する場合。 この拡張ポイントは 1 つの拡張しか 使用しません。

構成マークアップ:

   <!ELEMENT extension (moveDeleteHook?)>

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

   <!ELEMENT moveDeleteHook EMPTY>

   <!ATTLIST moveDeleteHook
     class CDATA #REQUIRED
   >

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

API 情報: class 属性の値は、org.eclipse.core.resources.team.IMoveDeleteHook のインプリメンテーションを表す必要があります。

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

Copyright (c) 2002 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