<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Modular Mind</title>
	<atom:link href="http://www.modumind.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.modumind.com</link>
	<description>Eclipse RCP and OSGi training - online or onsite</description>
	<lastBuildDate>Tue, 31 Aug 2010 01:28:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Creating an Eclipse RCP target platform by Contributing to JSDT: Setting up Build Target &#171; Eclipsed</title>
		<link>http://www.modumind.com/2009/09/01/creating-an-eclipse-rcp-target-platform/comment-page-1/#comment-11055</link>
		<dc:creator>Contributing to JSDT: Setting up Build Target &#171; Eclipsed</dc:creator>
		<pubDate>Tue, 31 Aug 2010 01:28:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.modumind.com/?p=828#comment-11055</guid>
		<description>[...] Modular Mind has some great articles on PDE build targets. [...]</description>
		<content:encoded><![CDATA[<p>[...] Modular Mind has some great articles on PDE build targets. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with PDE Build by Patrick</title>
		<link>http://www.modumind.com/2007/06/06/getting-started-with-pde-build/comment-page-6/#comment-10368</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Mon, 02 Aug 2010 22:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2007/06/06/getting-started-with-pde-build/#comment-10368</guid>
		<description>Hi Johan,

Are you using Helios as your target platform or are you trying to build with Helios against a Galileo RCP target?

If you&#039;re trying to build against a Helios target I have noticed some differences that required changes in the build script. I&#039;ve been meaning to post these online, but I&#039;ll email you the new sample projects.

--- Patrick</description>
		<content:encoded><![CDATA[<p>Hi Johan,</p>
<p>Are you using Helios as your target platform or are you trying to build with Helios against a Galileo RCP target?</p>
<p>If you&#8217;re trying to build against a Helios target I have noticed some differences that required changes in the build script. I&#8217;ve been meaning to post these online, but I&#8217;ll email you the new sample projects.</p>
<p>&#8212; Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with PDE Build by Johan</title>
		<link>http://www.modumind.com/2007/06/06/getting-started-with-pde-build/comment-page-6/#comment-10361</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Mon, 02 Aug 2010 08:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2007/06/06/getting-started-with-pde-build/#comment-10361</guid>
		<description>Hi,

I&#039;m using the PDE build script from your example but experiencing problems with Eclipse Helios that I did not encounter in Galileo. The problem manifests itself as false positives reported by the Hudson CI tool which used to call the Ant script in order to build code. Initially I thought this was a Hudson problem and documented the issue here: http://issues.hudson-ci.org/browse/HUDSON-6969. The resolution of that issue claims the problem is due to Ant errors not properly propagated, which I cannot understand since I&#039;m only calling the one Ant target below:


  
  
    
    
    
    
    
    
    
      
    
  


Any ideas? Thankful for any thoughts about this.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m using the PDE build script from your example but experiencing problems with Eclipse Helios that I did not encounter in Galileo. The problem manifests itself as false positives reported by the Hudson CI tool which used to call the Ant script in order to build code. Initially I thought this was a Hudson problem and documented the issue here: <a href="http://issues.hudson-ci.org/browse/HUDSON-6969" rel="nofollow">http://issues.hudson-ci.org/browse/HUDSON-6969</a>. The resolution of that issue claims the problem is due to Ant errors not properly propagated, which I cannot understand since I&#8217;m only calling the one Ant target below:</p>
<p>Any ideas? Thankful for any thoughts about this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using FormEditor with a single page by Patrick</title>
		<link>http://www.modumind.com/2008/01/04/using-formeditor-when-you-only-have-a-single-page/comment-page-1/#comment-10269</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2008/01/04/using-formeditor-when-you-only-have-a-single-page/#comment-10269</guid>
		<description>Hi idiotgenius,

Glad you found this tip helpful. As for saving, form editors rely on AbstractFormParts which generally map to form sections. Form parts are registered with the ManagedForm controller and then notified when a save has been requested (commit method is called). You can take whatever action you like in the commit method.

The PDE editors can serve as a good example here. Check out the org.eclipse.pde.ui source bundle and examine the source code.

Hope this helps,

--- Patrick</description>
		<content:encoded><![CDATA[<p>Hi idiotgenius,</p>
<p>Glad you found this tip helpful. As for saving, form editors rely on AbstractFormParts which generally map to form sections. Form parts are registered with the ManagedForm controller and then notified when a save has been requested (commit method is called). You can take whatever action you like in the commit method.</p>
<p>The PDE editors can serve as a good example here. Check out the org.eclipse.pde.ui source bundle and examine the source code.</p>
<p>Hope this helps,</p>
<p>&#8212; Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using FormEditor with a single page by idiotgenius</title>
		<link>http://www.modumind.com/2008/01/04/using-formeditor-when-you-only-have-a-single-page/comment-page-1/#comment-10254</link>
		<dc:creator>idiotgenius</dc:creator>
		<pubDate>Mon, 26 Jul 2010 12:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2008/01/04/using-formeditor-when-you-only-have-a-single-page/#comment-10254</guid>
		<description>Oh ~ thank you ,big master 
hut how to save what you are editing?</description>
		<content:encoded><![CDATA[<p>Oh ~ thank you ,big master<br />
hut how to save what you are editing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with PDE Build by Laurie</title>
		<link>http://www.modumind.com/2007/06/06/getting-started-with-pde-build/comment-page-6/#comment-9981</link>
		<dc:creator>Laurie</dc:creator>
		<pubDate>Mon, 12 Jul 2010 18:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2007/06/06/getting-started-with-pde-build/#comment-9981</guid>
		<description>Thank you for this sample of using PDE. I struggled with getting a build to work, researched the web for several days. I came across your example through one of my searches and had my build working in about 2-4 hours. I struggled with a few error messages. Today I figured it out by comparing what you had to what my build had. That was extremely helpful. I just wanted to say thanks for developing and sharing it so freely.</description>
		<content:encoded><![CDATA[<p>Thank you for this sample of using PDE. I struggled with getting a build to work, researched the web for several days. I came across your example through one of my searches and had my build working in about 2-4 hours. I struggled with a few error messages. Today I figured it out by comparing what you had to what my build had. That was extremely helpful. I just wanted to say thanks for developing and sharing it so freely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Online Training FAQ by Laurie</title>
		<link>http://www.modumind.com/rcp-training/online-training-faq/comment-page-1/#comment-9980</link>
		<dc:creator>Laurie</dc:creator>
		<pubDate>Mon, 12 Jul 2010 18:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.modumind.com/?page_id=691#comment-9980</guid>
		<description>Is the July 14-16 course still available?</description>
		<content:encoded><![CDATA[<p>Is the July 14-16 course still available?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding the Progress View to your RCP application by Alexandra N</title>
		<link>http://www.modumind.com/2009/02/16/adding-the-progress-view-to-your-rcp-application/comment-page-1/#comment-9768</link>
		<dc:creator>Alexandra N</dc:creator>
		<pubDate>Tue, 06 Jul 2010 13:57:24 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.com/?p=380#comment-9768</guid>
		<description>Thank you so much for publishing the missing puzzle piece. I was looking for it after reading the article Prakash wrote. And especially the progress indicator on the status bar.</description>
		<content:encoded><![CDATA[<p>Thank you so much for publishing the missing puzzle piece. I was looking for it after reading the article Prakash wrote. And especially the progress indicator on the status bar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Automated Tests with PDE Build by Wes</title>
		<link>http://www.modumind.com/2007/08/06/running-automated-tests-with-pde-build/comment-page-2/#comment-9766</link>
		<dc:creator>Wes</dc:creator>
		<pubDate>Tue, 06 Jul 2010 13:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2007/08/06/running-automated-tests-with-pde-build/#comment-9766</guid>
		<description>awesome tutorial! very helpful indeed.

Wes</description>
		<content:encoded><![CDATA[<p>awesome tutorial! very helpful indeed.</p>
<p>Wes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with PDE Build by gambit</title>
		<link>http://www.modumind.com/2007/06/06/getting-started-with-pde-build/comment-page-6/#comment-9637</link>
		<dc:creator>gambit</dc:creator>
		<pubDate>Thu, 01 Jul 2010 05:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://rcpquickstart.wordpress.com/2007/06/06/getting-started-with-pde-build/#comment-9637</guid>
		<description>Thanks a lot. I am looking forward to test your example.
gambit</description>
		<content:encoded><![CDATA[<p>Thanks a lot. I am looking forward to test your example.<br />
gambit</p>
]]></content:encoded>
	</item>
</channel>
</rss>
