[jbosstools-commits] JBoss Tools SVN: r22977 - branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu Jun 24 03:54:46 EDT 2010


Author: koen.aers at jboss.com
Date: 2010-06-24 03:54:46 -0400 (Thu, 24 Jun 2010)
New Revision: 22977

Modified:
   branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/plugin.xml
Log:
fix glitch for the jpdl menu

Modified: branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/plugin.xml
===================================================================
--- branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/plugin.xml	2010-06-24 07:50:00 UTC (rev 22976)
+++ branches/jbosstools-3.1.x/jbpm/plugins/org.jbpm.gd.jpdl/plugin.xml	2010-06-24 07:54:46 UTC (rev 22977)
@@ -1531,6 +1531,49 @@
       </propertySections>
    </extension> 
    
+   <extension point="org.eclipse.ui.editorActions"> 
+      <editorContribution 
+            id="org.jbpm.gd.jpdl.actions" 
+            targetID="org.jbpm.gd.jpdl.editor">
+         <menu
+               id="org.jbpm.gd.jpdl.menu"
+               label="jBPM"
+               path="additions">
+            <separator name="graphTools"/>
+            <separator name="deployTools"/>
+         </menu>
+         <action
+               id="org.jbpm.gd.jpdl.grid" 
+               label="Show Grid" 
+               tooltip="Toggle the grid for the jPDL editor"
+               menubarPath="org.jbpm.gd.jpdl.menu/graphTools"
+               style="toggle"
+               class="org.jbpm.gd.jpdl.action.ToggleGridActionDelegate">
+         </action> 
+         <action
+               id="org.jbpm.gd.jpdl.deploy"
+               label="Deploy Process"
+               tooltip="Deploy the process to the server"
+               menubarPath="org.jbpm.gd.jpdl.menu/deployTools"
+               class="org.jbpm.gd.jpdl.action.DeployProcessActionDelegate">
+         </action>
+         <action
+               id="org.jbpm.gd.jpdl.ping"
+               label="Ping Server"
+               tooltip="Check if the server can be reached with the current connection parameters."
+               menubarPath="org.jbpm.gd.jpdl.menu/deployTools"
+               class="org.jbpm.gd.jpdl.action.PingServerActionDelegate">
+         </action>
+         <action
+               id="org.jbpm.gd.jpdl.save"
+               label="Save Process Archive..."
+               tooltip="Save the process archive to a local file."
+               menubarPath="org.jbpm.gd.jpdl.menu/deployTools"
+               class="org.jbpm.gd.jpdl.action.SaveProcessArchiveActionDelegate">
+         </action>
+      </editorContribution> 
+   </extension>   
+   
    <extension point="org.eclipse.ui.startup">
       <startup class="org.jbpm.gd.jpdl.StartupClass"/>   
    </extension> 



More information about the jbosstools-commits mailing list