Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

Installation Dialog Pages

Identifier:
org.eclipse.ui.installationPages

Since:
3.5

Description:

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.

Configuration Markup:

<!ELEMENT extension ( page*)>

<!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

>

  • id -
  • class - The fully qualified name of a concrete subclass of org.eclipse.ui.about.InstallationPage.
  • name -

Examples:
The following is an example installation page:


   <extension point=
"org.eclipse.ui.installationPages"
> 
       <page
            name=
"XYZ Info"

            class=
"org.eclipse.ui.internal.XYZInstallInfoPage"

            id=
"org.eclipse.ui.internal.xyz>
       </page>
    </extension>

API Information:
The value of the attribute class must represent a fully qualified name of a class that is a concrete subclass of org.eclipse.ui.about.InstallationPage.

Supplied Implementation:
The Workbench uses this extension point to provide the following pages in the installation details dialog:
  • Plug-ins: A list of all of the plug-ins in the running the system, including details about each plug-in.
  • Configuration: The configuration information contributed via the org.eclipse.ui.systemSummarySections extension.


Copyright (c) 2008, 2009 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 https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire