The Eclipse UI provides an AboutDialog that can be branded and reused by client product plugins. This dialog typically shows the product splash image and other descriptive information about the product. The about dialog includes a button that allows the user to launch a secondary dialog, the Installation Details dialog.
The purpose of this extension point is to allow plug-ins to add pages to the installation details dialog. When the installation details dialog is opened, the pages contributed in this way will be added to the dialog box. These pages are used to supply additional detail about the product configuration.
This is an experimental extension point for an extensible about dialog. It is not ready for production and is included at this time only for evaluation by downstream clients. Use at your own risk.
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT page EMPTY>
<!ATTLIST page
id CDATA #REQUIRED
class CDATA #REQUIRED
name CDATA #REQUIRED>
org.eclipse.ui.about.InstallationPage
.
<extension point="org.eclipse.ui.installationPages"> <page name="XYZ Info" class="org.eclipse.ui.internal.XYZInstallInfoPage" id="org.eclipse.ui.internal.xyz> </page> </extension>
Copyright (c) 2008, 2009 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