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 Platform Plug-in Development Environment Guide
Previous Page Home Next Page

Launch Shortcuts

Identifier:
org.eclipse.pde.ui.launchShortcuts

Since:
3.3

Description:

This extension point is used to register a launching shortcut in a PDE editor. Launch shortcuts appear in the Testing section on the Overview page of the plug-in manifest editor. This allows clients to display in the editor shortcuts for their custom launch configurations or provide a shorcut to a profile mode for the existing Eclipse Application and OSGi Framework launch configurations.

Configuration Markup:

<!ELEMENT extension ( shortcut+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT shortcut EMPTY>

<!ATTLIST shortcut

id    CDATA #REQUIRED

label CDATA #REQUIRED

mode  (run|debug|profile)

osgi  (true | false)

>

  • id - the id of the corresponding org.eclipse.debug.ui.launchShortcuts extension which should be launched when the link is clicked.
  • label - human-readable label to be displayed in the editor.
  • mode - the mode in which to launch the shortcut. Permitted values are run, debug and profile.
  • osgi - If set to true, the link is displayed only if the plug-in manifest editor's presentation is set to show OSGi-related sections only, ie. when the Extensions and Extension Points pages are absent. If not specified, the value is assumed to be false.

Examples:

The following is an example of the extension point:


   <extension
         point=
"org.eclipse.pde.ui.launchShortcuts"
>
      <shortcut
            id=
"org.eclipse.pde.ui.runtimeWorkbenchShortcut"

            label=
"Launch an Eclipse Runtime"
 
            mode=
"run"

            osgi=
"false"
/>
   </extension>

Supplied Implementation:

PDE supplies shortcut extensions to launch Eclipse applications and OSGi frameworks.


Copyright (c) 2007 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