scriptResolvers

識別子:
org.eclipse.wst.jsdt.debug.core.scriptResolvers

開始:
3.4

説明:
この拡張ポイントは、ScriptReference をワークスペース・ローカルの IFile に解決する必要のある JSDT 内の場所で呼び出されるスクリプト・ソルバーをコントリビュートするために使用します。

典型的な使用例は、ブレークポイントのワークスペース・パスが特定の ScriptReference と一致するかどうかを解決するというケースです。

構成マークアップ:

<!ELEMENT extension (scriptResolver)+>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT scriptResolver EMPTY>

<!ATTLIST scriptResolver

class CDATA #REQUIRED

>

ワークスペース・ローカルの IFiles と JavaScript ScriptReference との間の等価性を判別するのに役立つリゾルバー



例:
デフォルトのスクリプト・リゾルバーの例は次のとおりです。

   <extension point="org.eclipse.wst.jsdt.debug.core.scriptResolvers">
      <scriptResolver
            class="org.eclipse.wst.jsdt.debug.internal.core.model.DefaultScriptResolver">
      </scriptResolver>
   </extension>

API 情報:
class フィールドには、org.eclipse.wst.jsdt.debug.core.model.AbstractScriptResolver を拡張するクラスの完全修飾名を指定する必要があります。

提供される実装:
[システムに提供されたこの拡張ポイントの実装情報を入力してください。]


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