<!ELEMENT extension (consoleColorProvider*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT consoleColorProvider EMPTY>
<!ATTLIST consoleColorProvider
id CDATA #REQUIRED
class CDATA #REQUIRED
processType CDATA #REQUIRED>
IConsoleColorProvider
を実装する Java クラスの完全修飾名を指定します。IProcess.ATTR_PROCESS_TYPE
に対応しています。上の例では、提供された色プロバイダーが型 "ExampleProcessType" のプロセスに使用されます。 これは、プロセス属性 IProcess.ATTR_PROCESS_TYPE に対応しています。 プロセス型はクライアント定義され、そのプロセスを作成するクライアントによって設定されます。<extension point=
"org.eclipse.debug.ui.consoleColorProviders"
>
<consoleColorProvider id=
"com.example.ExampleConsoleColorProvider"
class=
"com.example.ExampleConsoleColorProvider"
processType=
"ExampleProcessType"
>
</consoleColorProvider>
</extension>
Copyright (c) 2000, 2005 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