無視

ID: org.eclipse.team.core.ignore

説明: この拡張ポイントを使用して、特定のリソースが無視されるかどうか、つまり、 バージョン構成管理操作から除外されるかどうかについての情報を登録します。 プロバイダーはこの拡張ポイントを拡張できます。 XML 拡張宣言以外に必要なコードはありません。

構成マークアップ:

   <!ELEMENT extension (ignore*)>

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

   <!ELEMENT ignore EMPTY>

   <!ATTLIST ignore
     pattern CDATA #REQUIRED
     enabled (true | false)
   >

例: 無視拡張の例を以下に示します。

 <extension point="org.eclipse.team.core.ignore">
  <ignore pattern="*.class" enabled="true"/>
</extension>

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