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 "Table of WTP IDs"

(Commands)
(Commands)
Line 9: Line 9:
 
<tr>
 
<tr>
 
   <td><b>Id</b></td>
 
   <td><b>Id</b></td>
   <td><b>Category Id</b>
+
   <td><b>Category Id</b></td>
   </td><b>Component</b><td></td>
+
   <td><b>Menu/Toolbar</b></td>
 
   <td><b>Location</b></td>
 
   <td><b>Location</b></td>
 
   <td><b>Description</b></td>
 
   <td><b>Description</b></td>
Line 17: Line 17:
 
   <td>org.eclipse.wst.sse.ui.structure.select.enclosing</td>
 
   <td>org.eclipse.wst.sse.ui.structure.select.enclosing</td>
 
   <td>org.eclipse.ui.category.edit</td>
 
   <td>org.eclipse.ui.category.edit</td>
   <td>SSE UI</td>
+
   <td>Edit</td>
 
   <td>plugin.xml</td>
 
   <td>plugin.xml</td>
 
   <td>Select Enclosing</td>
 
   <td>Select Enclosing</td>
Line 24: Line 24:
 
   <td>org.eclipse.wst.sse.ui.structure.select.next</td>
 
   <td>org.eclipse.wst.sse.ui.structure.select.next</td>
 
   <td>org.eclipse.ui.category.edit</td>
 
   <td>org.eclipse.ui.category.edit</td>
   <td>SSE UI</td>
+
   <td>Edit</td>
 
   <td>plugin.xml</td>
 
   <td>plugin.xml</td>
 
   <td>Select Next</td>
 
   <td>Select Next</td>
Line 31: Line 31:
 
   <td>org.eclipse.wst.sse.ui.structure.select.previous</td>
 
   <td>org.eclipse.wst.sse.ui.structure.select.previous</td>
 
   <td>org.eclipse.ui.category.edit</td>
 
   <td>org.eclipse.ui.category.edit</td>
   <td>SSE UI</td>
+
   <td>Edit</td>
 
   <td>plugin.xml</td>
 
   <td>plugin.xml</td>
 
   <td>Select Previous</td>
 
   <td>Select Previous</td>
Line 38: Line 38:
 
   <td>org.eclipse.wst.sse.ui.structure.select.last</td>
 
   <td>org.eclipse.wst.sse.ui.structure.select.last</td>
 
   <td>org.eclipse.ui.category.edit</td>
 
   <td>org.eclipse.ui.category.edit</td>
   <td>SSE UI</td>
+
   <td>Edit</td>
   <td>plugin.xml</td>
+
   <td>SSE.ui/plugin.xml</td>
 
   <td>Select Last</td>
 
   <td>Select Last</td>
 
</tr>
 
</tr>
  
 
</table>
 
</table>

Revision as of 21:33, 15 December 2007

Introduction

There are a vast number of ids that are used within the WTP. Every command, content-type, action, menu, etc has an id that is associated with it. This page will try to keep up to date with the various ids, where they can be found, and what they correspond too.

It is important to document the usage of the ids, especially when they relate to menus, toolbars, commands, and popus as the org.eclipse.ui.menus extension point allows for other plugins to contribute to menus based off the ids that are published. Commands are also referenced by id, and are implemented based on handlers.

Commands

Id Category Id Menu/Toolbar Location Description
org.eclipse.wst.sse.ui.structure.select.enclosing org.eclipse.ui.category.edit Edit plugin.xml Select Enclosing
org.eclipse.wst.sse.ui.structure.select.next org.eclipse.ui.category.edit Edit plugin.xml Select Next
org.eclipse.wst.sse.ui.structure.select.previous org.eclipse.ui.category.edit Edit plugin.xml Select Previous
org.eclipse.wst.sse.ui.structure.select.last org.eclipse.ui.category.edit Edit SSE.ui/plugin.xml Select Last

Back to the top