<!ELEMENT extension (consolePageParticipant)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT consolePageParticipant (enablement)>
<!ATTLIST consolePageParticipant
id CDATA #REQUIRED
class CDATA #REQUIRED>
IConsolePageParticipant
<extension point="org.eclipse.ui.console.consolePageParticipants"> <consolePageParticipant class="com.example.ExamplePageParticipant" id="com.example.ExamplePageParticipant"> <enablement> <instanceof value="com.example.ExampleConsole"/> </enablement> </consolePageParticipant> </extension>In the above example, the contributed console page participant will be used for all consoles of type "com.example.ExampleConsole."
Copyright (c) 2000, 2005 IBM Corporation and others.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0 which
accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-v20.html/
SPDX-License-Identifier: EPL-2.0