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 43: Line 43:
 
</tr>
 
</tr>
  
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.toggle.comment</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Toggle Comment</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.add.block.comment</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Add Block Comment</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.remove.block.comment</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Remove Block Comment</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.cleanup.document</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Cleanup Document</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.format.document</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Format Document</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.format.active.elements</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Format Active Elements</td>
 +
</tr>
 +
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.open.file.from.source</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Navigate</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Open File From Source</td>
 +
</tr>
 +
<tr>
 +
  <td>org.eclipse.wst.sse.ui.search.find.occurrences</td>
 +
  <td>org.eclipse.ui.category.edit</td>
 +
  <td>Source</td>
 +
  <td>SSE.ui/plugin.xml</td>
 +
  <td>Find Occurrences</td>
 +
</tr>
 
</table>
 
</table>

Revision as of 22:01, 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
org.eclipse.wst.sse.ui.toggle.comment org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Toggle Comment
org.eclipse.wst.sse.ui.add.block.comment org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Add Block Comment
org.eclipse.wst.sse.ui.remove.block.comment org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Remove Block Comment
org.eclipse.wst.sse.ui.cleanup.document org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Cleanup Document
org.eclipse.wst.sse.ui.format.document org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Format Document
org.eclipse.wst.sse.ui.format.active.elements org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Format Active Elements
org.eclipse.wst.sse.ui.open.file.from.source org.eclipse.ui.category.edit Navigate SSE.ui/plugin.xml Open File From Source
org.eclipse.wst.sse.ui.search.find.occurrences org.eclipse.ui.category.edit Source SSE.ui/plugin.xml Find Occurrences

Back to the top