インクルード・パス変数イニシャライザー

識別子:
org.eclipse.wst.jsdt.core.JsGlobalScopeVariableInitializer

開始:
2.0

説明:
クライアントはこの拡張ポイントを使用して、カスタム・インクルード・パス変数イニシャライザーを提供できます。 それらのイニシャライザーは、インクルード・パス変数をゆるやかにバインドするために使用されます。

構成マークアップ:

<!ELEMENT extension (JsGlobalScopeVariableInitializer*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT JsGlobalScopeVariableInitializer EMPTY>

<!ATTLIST JsGlobalScopeVariableInitializer

variable   CDATA #REQUIRED

class      CDATA #REQUIRED

deprecated CDATA #IMPLIED

readOnly   (true | false)

>


例:
「FOO」という名前のクラスパス変数のための JsGlobalScopeVariableInitializer の宣言例:
                                                                       
<extension point="org.eclipse.wst.jsdt.core.JsGlobalScopeVariableInitializer">            
   <JsGlobalScopeVariableInitializer                                          
      variable="FOO"                                                        
      class="com.example.CPVInitializer"/>                           
   </extension>


Copyright (c) 2000, 2007 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