This extension point provides a mechanism for contributing a console page participant. A console page participant is notified of page lifecycle events such as creation, activation, deactivation and disposal. A page participant can also provide adapters for a page. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance specifies a unique identifier for this Console Page Participant specifies a fully qualified name of a Java class that implements <code>IConsolePageParticipant</code> 3.1 The following is an example of a console page participant extension point: <pre> <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> </pre> In the above example, the contributed console page participant will be used for all consoles of type "com.example.ExampleConsole." Value of the attribute <b>class</b> must be a fully qualified name of a Java class that implements the interface <b>org.eclipse.ui.console.IConsolePageParticipant</b>. Copyright (c) 2000, 2005 IBM Corporation and others.<br> 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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>