ファイル変更バリデーター

ID: org.eclipse.core.resources.fileModificationValidator

説明: IFileModificationValidator のインプリメンテーションを、編集-検証メカニズムおよび保管-検証メカニズムで使用する場合。 この拡張ポイントは 1 つの拡張しか 使用しません。

構成マークアップ:

   <!ELEMENT extension (fileModificationValidator?)>

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

   <!ELEMENT fileModificationValidator EMPTY>

   <!ATTLIST fileModificationValidator
     class CDATA #REQUIRED
   >

例: fileModificationValidator 拡張ポイントの例を以下に示します。

 <extension point="org.eclipse.core.resources.fileModificationValidator">
  <fileModificationValidator class="org.eclipse.vcm.internal.VCMFileModificationValidator"/>
</extension>

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

提供されるインプリメンテーション: 一般に、ファイル変更バリデーターのインプリメンテーションは、 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