pde/ui/org.eclipse.pde.runtime/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.52 - (download) (as text) (annotate)
Wed May 27 20:38:45 2009 UTC (6 months ago) by darin
Branch: MAIN
CVS Tags: v20090630, v20090527, R3_5, v20090731, R3_5_1, v20090729, HEAD
Branch point for: R3_5_maintenance
Changes since 1.51: +11 -1 lines
copyright
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
     Copyright (c) 2005, 2009 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
     http://www.eclipse.org/legal/epl-v10.html
    
     Contributors:
         IBM Corporation - initial API and implementation
 -->

<plugin>

<!-- Extensions -->
   <extension
         point="org.eclipse.ui.views">
      <view
            name="%views.registry.name"
            icon="$nl$/icons/eview16/registry.gif"
            category="org.eclipse.pde.ui"
            class="org.eclipse.pde.internal.runtime.registry.RegistryBrowser"
            id="org.eclipse.pde.runtime.RegistryBrowser">
      </view>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <category
            id="org.eclipse.pde.runtime.spy.commands.category"
            name="%spy-category.name">
      </category>
      <command
            categoryId="org.eclipse.pde.runtime.spy.commands.category"
            description="%spy-command.description"
            id="org.eclipse.pde.runtime.spy.commands.spyCommand"
            name="%spy-command.name">
      </command>
      <command
            categoryId="org.eclipse.pde.runtime.spy.commands.category"
            description="%spy-command.description"
            id="org.eclipse.pde.runtime.spy.commands.menuSpyCommand"
            name="%spy-command.name">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.commandImages">
      <image
            commandId="org.eclipse.pde.runtime.spy.commands.spyCommand"
            icon="$nl$/icons/obj16/pdespy_obj.gif">
      </image>
      <image
            commandId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand"
            icon="$nl$/icons/obj16/menuspy_obj.gif">
      </image>
   </extension>
   <extension
         point="org.eclipse.ui.bindings">
      <key
            commandId="org.eclipse.pde.runtime.spy.commands.spyCommand"
            contextId="org.eclipse.ui.contexts.dialogAndWindow"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M3+M2+F1">
      </key>
       <key
            contextId="org.eclipse.ui.contexts.dialogAndWindow"
            locale="ja"
            platform="carbon"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M3+M2+F1">
      </key>
      <key
            commandId="org.eclipse.pde.runtime.spy.commands.spyCommand"
            contextId="org.eclipse.ui.contexts.dialogAndWindow"
            locale="ja"
            platform="carbon"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M1+M3+F1">
      </key>
      <key
            commandId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand"
            contextId="org.eclipse.ui.contexts.dialogAndWindow"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M3+M2+F2">
      </key>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.pde.internal.runtime.spy.handlers.SpyHandler"
            commandId="org.eclipse.pde.runtime.spy.commands.spyCommand">
      </handler>
      <handler
            class="org.eclipse.pde.internal.runtime.spy.handlers.MenuSpyHandler"
            commandId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand">
      </handler>
   </extension>

</plugin>