<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: extendind the palette of activiti designer in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121923#M85898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;your projects are not imported correctly, or you wouldn't have those kinds of errors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually, you can just clone the root level project from github, then add the local clone to eclipse using the git repo perspective. Then import the root as a general Eclipse project. Finally, just right click and perform import &amp;gt; existing Maven projects and that should work just fine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Apr 2013 18:59:59 GMT</pubDate>
    <dc:creator>tiesebarrell</dc:creator>
    <dc:date>2013-04-15T18:59:59Z</dc:date>
    <item>
      <title>extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121908#M85883</link>
      <description>hi;I'm trying to extend te palette of activiti designer with a special tipe of bundary event and specific connector.I seceeded in the implementation of the exepple of money node witch is written in user guide.I kept reading user guide&amp;nbsp; and I reached to uderstand this:-the annotation @Runtime allow t</description>
      <pubDate>Fri, 29 Mar 2013 11:47:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121908#M85883</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-03-29T11:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121909#M85884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can't extend the palette to create new types of boundary events. This is only supported for Service Tasks. If you use an @Runtime annotation on a service task extension, you don't *have* to implement JavaDelegate anymore (since last release). It can also be a Spring Bean. But in most cases, you will probably implement JavaDelegate. However, the implementation is not to be found in that package, because those are the default implementations. In most cases, you will want to write your own implementation of JavaDelegate en link to that using @Runtime.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Mar 2013 13:25:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121909#M85884</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-03-30T13:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121910#M85885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;does this mean that I can't use activiti designer to acheve my purpose or I can create new types of boundary events if I implelent JavaDelegate to create my own; because I have to follow the instruction of my proffessor who supervise me, and if I can't I'll be obliged to find a new BPMN editor, wich I don't want to do it.&amp;nbsp; :cry:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;please could you provide me a solution to get my aim. &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you for your response;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Mar 2013 19:24:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121910#M85885</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-03-30T19:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121911#M85886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You're mixing two things here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) To implement CustomServiceTasks in Designer, which is what adds new kinds of elements to the palette, you don't implement JavaDelegate. You write a regular java class and annotate it as specified in the user guide. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Any ServiceTask can be bound to a runtime implementation, which is the code that is executed when a process instance is being executed and the service task is reached. Since a CustomServiceTask is effectively a regular ServiceTask at runtime, this is available for CustomServiceTasks as well. This is what is specified using the @Runtime annotation on the CustomServiceTask's class. One of the options for that runtime implementation is to implement JavaDelegate, but keep in mind this is the runtime implementation and has very little to do with defining a CustomServiceTask itself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regarding 1), this is only available for ServiceTasks (hence the name "CustomServiceTasks"), so if you need to add boundary events, you cannot use this. If you need to add customized boundary events, you will need to add them to the core of Designer in the same way any other boundary events have been created already. For examples of that, take a look at the implementations that are already there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope this helps. In short, yes, you can do this, but not using the standard extension mechanism provided by CustomServiceTasks. You will have to expand the functionality of the core Designer to achieve it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 08:39:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121911#M85886</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-03-31T08:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121912#M85887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks a lot for you generosity;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this is rearlly help, but does this mean that I can't any more use the maven "mecanism" and I have to download the source code to expand the functionality of the core Designer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks exceedingly.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2013 10:55:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121912#M85887</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-01T10:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121913#M85888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;yes, you will have to set up a complete development environment in Eclipse to extend the core functionality&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2013 10:57:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121913#M85888</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-01T10:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121914#M85889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I appreciate your precious advice , and I'm so grateful for you; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;could you please guide me to previous works that manipulate the core functionality of activiti designer as well as mine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks a lot.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 21:22:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121914#M85889</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-02T21:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121915#M85890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The documentation for extending Designer that we have is all in the userguide here: &lt;/SPAN&gt;&lt;A href="http://activiti.org/userguide/index.html#eclipseDesignerExtending" rel="nofollow noopener noreferrer"&gt;http://activiti.org/userguide/index.html#eclipseDesignerExtending&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With regards to extending Designer's core, there is no information. This is Eclipse plugin development work and we use Graphiti (&lt;/SPAN&gt;&lt;A href="http://www.eclipse.org/graphiti/" rel="nofollow noopener noreferrer"&gt;http://www.eclipse.org/graphiti/&lt;/A&gt;&lt;SPAN&gt;) as a framework for the graphical editing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are a couple of places to look at in Designer's code base:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The package org.activiti.designer.features in the gui bundle contains Create and Add features for various kinds of palette items as examples.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The class org.activiti.designer.diagram.ActivitiBPMNFeatureProvider adds the items to the palette, so you'll need to add your new shape there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In the package org.activiti.designer.property of the gui bundle are examples of property panes so user's can configure the properties of your shape.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps to get you started. Have fun!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 18:32:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121915#M85890</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-03T18:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121916#M85891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I followed your instructions and I started to navigate into the code, mainly, the packages that you have mentionned beside the documentation of graphiti; then I discovred that I passed the most important thing&amp;nbsp;&amp;nbsp; :shock: witch is how to run the source code of designer, so I proceeded this tutorial &lt;/SPAN&gt;&lt;A href="http://docs.codehaus.org/display/ACT/Activiti+Designer+Developer+Guide" rel="nofollow noopener noreferrer"&gt;http://docs.codehaus.org/display/ACT/Activiti+Designer+Developer+Guide&lt;/A&gt;&lt;SPAN&gt; and I thought that it seems GMF, so I went to file new loocking for a project or diagram named activiti or bpmn in the "environment for working with Activiti Designer" and&amp;nbsp; I didn't find any thing could help me. :roll: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;could you please tell me what should I do. &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks you very much. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 11:17:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121916#M85891</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-13T11:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121917#M85892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The description there is actually still pretty much spot on. You should install the Graphiti SDK, run mvn eclipse:eclipse on all the Designer projects and then run Eclipse from the org.activiti.designer.eclipse bundle using right-click &amp;gt; run as &amp;gt; Eclipse Application. Any changes you've made to the original Designer bundles will then be picked up.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 11:21:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121917#M85892</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-13T11:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121918#M85893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;should I "Checkout all of the folders in the source control location as top level Eclipse projects" as it has been said because the project contain 3 sub folder(branches, tag, trunk).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks a lot for answering.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 13:16:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121918#M85893</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-13T13:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121919#M85894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Where are you looking? That sounds like the SVN repository, which we no longer use. In the Github project those folders aren't there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 15:09:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121919#M85894</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-13T15:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121920#M85895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you're right;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so I downloaded a zip file from github and I extact it into work space, because even when I download the code trough git eclipse plugin, I'll be faced by the same problem which is&amp;nbsp; "all&amp;nbsp; the folders in the source control location should be as top level Eclipse projects".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 21:19:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121920#M85895</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-13T21:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121921#M85896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It's easier to import the git projects directly into Eclipse, but still. Just do an import of each folder in Eclipse as a new project after extracting the zip.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Apr 2013 07:24:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121921#M85896</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-14T07:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121922#M85897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;when I importe the git projects directly into Eclipse, I'm not allowed to get the projects like they are in github, because I should define a root for them and it could be whether general project or an exsting project, so, I prefert to follow the zip file way and I did every thing you told and I could lately run it and I got an activiti winzard&amp;nbsp; but I didn't get to instanciate it&amp;nbsp;&amp;nbsp; :?&amp;nbsp; because of the following error&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"The selected wizard could not be started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Plug-in org.activiti.designer.eclipse was unable to load class org.activiti.designer.eclipse.ui.wizard.project.CreateDefaultActivitiProjectWizard.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.activiti.designer.eclipse.ui.wizard.project.CreateDefaultActivitiProjectWizard"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope that I'm not bothering you by my questions&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks a lot.&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 13:48:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121922#M85897</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-15T13:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121923#M85898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;your projects are not imported correctly, or you wouldn't have those kinds of errors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually, you can just clone the root level project from github, then add the local clone to eclipse using the git repo perspective. Then import the root as a general Eclipse project. Finally, just right click and perform import &amp;gt; existing Maven projects and that should work just fine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2013 18:59:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121923#M85898</guid>
      <dc:creator>tiesebarrell</dc:creator>
      <dc:date>2013-04-15T18:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121924#M85899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've done every thing you told me, but, unfortunately those errors are still persisting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm so anxious now because this is taking much of time, so, please is there another&amp;nbsp; solution &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 10:31:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121924#M85899</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-17T10:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121925#M85900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;: ^^ *yahoo*&amp;nbsp; :dance: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*i-m_so_happy* *HAPPY* :happy: :HAPPY: :Happy: ^^&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you, I don't know how but it works now&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Apr 2013 04:11:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121925#M85900</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-18T04:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121926#M85901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;as I annouunced in my frist comment , I want to add to the palette a specific type of boundary events and connectors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;first of all, how could I create a group in the palette as like as gateway for instance, and how do I link my shapes to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I succeeded to add a shape whitch I called "shape" by creating AddShapeFeature( extends AbstractAddBoundaryFeature) and CreateShapeFeature ( extends AbstractCreateBoundaryFeature). ps: I copied the classes AddBoundaryErrorFeature and&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; CreateBoundaryErrorFeature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; and I modified ActivitiBPMNFeatureProvider: I added IcreateFeature&amp;nbsp; new CreateShapeFeature(this); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;despite, I could'nt change the name of the shape neither it view in the diagram.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so am I in the right way, and what should I do to correct&amp;nbsp; these mistake&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 13:38:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121926#M85901</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-22T13:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: extendind the palette of activiti designer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121927#M85902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;as I annouunced in my frist comment , I want to add to the palette a specific type of boundary events and connectors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;first of all, how could I create a group in the palette as like as gateway for instance, and how do I link my shapes to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I succeeded to add a shape whitch I called "shape" by creating AddShapeFeature( extends AbstractAddBoundaryFeature) and CreateShapeFeature ( extends AbstractCreateBoundaryFeature). ps: I copied the classes AddBoundaryErrorFeature and&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; CreateBoundaryErrorFeature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; and I modified ActivitiBPMNFeatureProvider: I added IcreateFeature&amp;nbsp; new CreateShapeFeature(this); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;despite, I could'nt change the name of the shape neither it view in the diagram.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so am I in the right way, and what should I do to correct&amp;nbsp; these mistake&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 13:39:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extendind-the-palette-of-activiti-designer/m-p/121927#M85902</guid>
      <dc:creator>mhammad_makni</dc:creator>
      <dc:date>2013-04-22T13:39:01Z</dc:date>
    </item>
  </channel>
</rss>

