schema.consolePageParticipants.exsd Maven / Gradle / Ivy
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>
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
<a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/
SPDX-License-Identifier: EPL-2.0