Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Information for Reusing Eclipse Components within your RCP application"

(How to extract information about components)
(List of specific Extensions/Functionality)
Line 18: Line 18:
 
|-  
 
|-  
 
| Cut Command || org.eclipse.ui.commands || org.eclipse.ui || org.eclipse.ui.edit.cut ||  see plugin.xml in org.eclipse.ui_*.jar for more
 
| Cut Command || org.eclipse.ui.commands || org.eclipse.ui || org.eclipse.ui.edit.cut ||  see plugin.xml in org.eclipse.ui_*.jar for more
 +
|-
 +
| colspan="2" | Add views short list/perspective short list etc. || ||colspan="2"| Utilize ContributionItemFactory, see Czetsuya's tech blog [http://czetsuya-tech.blogspot.de/2010/03/add-eclipse-rcps-views-short-list.html]
 
|}
 
|}
 
* Add views short list/perspective short list etc. to an RCP application [http://czetsuya-tech.blogspot.de/2010/03/add-eclipse-rcps-views-short-list.html]
 

Revision as of 07:03, 12 April 2012

Goal of this Page

This page should collect hints on how to get the relevant information how to use an extension (like the project explorer, the perspective editor, standard commands etc) that can be found within eclipse, in your own Eclipse RCP application. The purpose is especially to collect the plugins and their ids, along with other information how to use the.

Please edit this page for it to become usefull!

How to extract information about components

  • A good source on how to extract information about installed plugins is Vogella's article [1]
  • The Plugin-Spy is a must (press Shift+Alt+F1 within an editor, wizard, .. etc. or Shift+Alt+F2 and select a menu entry)

List of specific Extensions/Functionality

Functionality Extension Point Source Plugin ID Notes
Save Command org.eclipse.ui.commands org.eclipse.ui org.eclipse.ui.file.save see plugin.xml in org.eclipse.ui_*.jar for more
Exit Command org.eclipse.ui.commands org.eclipse.ui org.eclipse.ui.file.exit see plugin.xml in org.eclipse.ui_*.jar for more
Cut Command org.eclipse.ui.commands org.eclipse.ui org.eclipse.ui.edit.cut see plugin.xml in org.eclipse.ui_*.jar for more
Add views short list/perspective short list etc. Utilize ContributionItemFactory, see Czetsuya's tech blog [2]

Back to the top