Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » BPMN 2.0 Modeler » Extending BPMN2 modeler for jbpm runtime
Extending BPMN2 modeler for jbpm runtime [message #1239854] Wed, 05 February 2014 07:48 Go to next message
Rahul Shukla is currently offline Rahul ShuklaFriend
Messages: 12
Registered: April 2011
Location: Pune India
Junior Member

I want to add custom task in eclipse based bpmn2 modeler for jbpm runtime. I follow the instruction given in "http://eclipse.org/bpmn2-modeler/videos/CustomTask-Example-part1.htm" with runtime id = "org.jboss.runtime.jbpm5" (runtime id for jbpn runtime) I am able to see the custom task but not able to add the corresponding property tab ...
below is my plugin.xml

<plugin>
<extension
point="org.eclipse.bpmn2.modeler.runtime">
<customTask
category="My Tool"
description="this is newly task entered by me "
featureContainer="customtask.RahulTaskFeatureContainer"
icon="dst.png"
id="customTask.customTask1"
name="Rahul Task"
propertyTabs="tab"
runtimeId="org.jboss.runtime.jbpm5"
type="Task">
</customTask>

<propertyTab
afterTab="org.eclipse.bpmn2.modeler.description.tab"
class="customtask.MyTaskPropertySection"
id="tab"
label="Rahul Task"
replaceTab="bpmn2.jbpm.customTask.tab"
runtimeId="org.jboss.runtime.jbpm5"
type="org.eclipse.bpmn2.Task">
</propertyTab>
</extension>

</plugin>

Any help will be great full

Thanks
Rahul Shukla
Re: Extending BPMN2 modeler for jbpm runtime [message #1240123 is a reply to message #1239854] Wed, 05 February 2014 18:56 Go to previous message
Robert Brodt is currently offline Robert BrodtFriend
Messages: 811
Registered: August 2010
Location: Colorado Springs, CO
Senior Member

Hi Rahul,

Make sure you override appliesTo(IWorkbenchPart, ISelection) in your MyTaskPropertySection class. See some of the other examples for this.

Bob
Previous Topic:Use BPMN2-Modeler to make M2T Transformation
Next Topic:Issue in CallActivity of a Process
Goto Forum:
  


Current Time: Tue Apr 23 08:27:26 GMT 2024

Powered by FUDForum. Page generated in 0.03155 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top