説明: この拡張ポイントは、 プラットフォームの検索パスに、追加の URL ハンドラーを登録するために使用します。 プラットフォームのクラス・ローダー構造のため、 標準の Java メカニズムを使用してプラグインに登録した URL ハンドラーは検出されません。
構成マークアップ:
<!ELEMENT extension (handler*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT handler EMPTY>
<!ATTLIST handler
protocol CDATA #REQUIRED
class CDATA #REQUIRED
>
<extension point="org.eclipse.core.runtime.urlHandlers"> <handler protocol="foo" class="org.eclipse.handlers.FooHandler"/> </extension>
API 情報: class 属性の値は、java.net.URLStreamHandler のインプリメンテーションの インプリメント元を表す必要があります。
提供されるインプリメンテーション: プラットフォームには、この拡張ポイントにより登録される URL ハンドラーは提供されません。
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