<?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 Extending Activiti Designer Using Plugins in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/extending-activiti-designer-using-plugins/m-p/122418#M86224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to extend the Activiti designer by utilizing the PaletteExtensionProvider extension point. I am creating my own plugin for this purpose. For my requirement I cannot extend the designer by following the steps given here (&lt;/SPAN&gt;&lt;A href="http://activiti.org/userguide/index.html#eclipseDesignerInstallation" rel="nofollow noopener noreferrer"&gt;http://activiti.org/userguide/index.html#eclipseDesignerInstallation&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have to go the plugin path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am fairly new to Eclipse PDE and am still trying to wrap my head around the whole process. Here are the steps that I am following - &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Question 1 - &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;public class MyCustomPaletteProvider implements IPaletteProvider {&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Override&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public List&amp;lt;CustomServiceTaskDescriptor&amp;gt; provide() {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;CustomServiceTaskDescriptor customServiceTaskDescriptor= new CustomServiceTaskDescriptor(AcmeMoneyTask.class, "Acme Money Task",[b]jarPath[/b]);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;customServiceTaskDescriptors.add(customServiceTaskDescriptor);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return customServiceTaskDescriptors;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Probably a dumb question but what I am trying to understand is how I should provide the jar path in the final argument since I am just trying to run the plugin from my Eclipse using Run As - &amp;gt; Eclipse Application?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Question 2 -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to hide some palettes from getting displayed. Is there a way I can do this from my plugin extension Point?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts as to how I can achieve the above?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Nov 2012 06:36:20 GMT</pubDate>
    <dc:creator>apache_fan</dc:creator>
    <dc:date>2012-11-28T06:36:20Z</dc:date>
    <item>
      <title>Extending Activiti Designer Using Plugins</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extending-activiti-designer-using-plugins/m-p/122418#M86224</link>
      <description>Hello,I am trying to extend the Activiti designer by utilizing the PaletteExtensionProvider extension point. I am creating my own plugin for this purpose. For my requirement I cannot extend the designer by following the steps given here (http://activiti.org/userguide/index.html#eclipseDesignerInstal</description>
      <pubDate>Wed, 28 Nov 2012 06:36:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extending-activiti-designer-using-plugins/m-p/122418#M86224</guid>
      <dc:creator>apache_fan</dc:creator>
      <dc:date>2012-11-28T06:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extending Activiti Designer Using Plugins</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/extending-activiti-designer-using-plugins/m-p/122419#M86225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can find an example here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://github.com/jenkinsci/jenkow-plugin/blob/master/eclipse/com.cisco.surf.jenkow.ide.config/src/com/cisco/surf/jenkow/ide/config/PaletteProvider.java" rel="nofollow noopener noreferrer"&gt;https://github.com/jenkinsci/jenkow-plugin/blob/master/eclipse/com.cisco.surf.jenkow.ide.config/src/com/cisco/surf/jenkow/ide/config/PaletteProvider.java&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem with the current approach is that the Designer still wants to see a literal .jar file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Max&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2012 19:33:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/extending-activiti-designer-using-plugins/m-p/122419#M86225</guid>
      <dc:creator>m2spring</dc:creator>
      <dc:date>2012-12-25T19:33:17Z</dc:date>
    </item>
  </channel>
</rss>

