Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 33: Line 33:
 
   <td>SSE UI</td>
 
   <td>SSE UI</td>
 
   <td>plugin.xml</td>
 
   <td>plugin.xml</td>
   <td>Select Previous</td></tr>
+
   <td>Select Previous</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.structure.select.last</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>SSE UI</td>
 +
  <td>plugin.xml</td>
 +
  <td>Select Last</td>
 +
</tr>
 +
 
 
</table>
 
</table>

Revision as of 21:30, 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

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

Back to the top