<?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 on: RCP Navigator Example (updated)</title>
	<atom:link href="http://www.cpuidle.de/blog/?attachment_id=50&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cpuidle.de/blog/?attachment_id=50</link>
	<description>cpuidle's weblog</description>
	<lastBuildDate>Tue, 20 Apr 2010 13:51:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: fstyle.de &#187; Blog Archive &#187; Using the Eclipse Common Navigator Framework in RCP</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-55940</link>
		<dc:creator>fstyle.de &#187; Blog Archive &#187; Using the Eclipse Common Navigator Framework in RCP</dc:creator>
		<pubDate>Fri, 29 May 2009 21:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-55940</guid>
		<description>[...] http://www.cpuidle.de/blog/?attachment_id=50 [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.cpuidle.de/blog/?attachment_id=50" rel="nofollow">http://www.cpuidle.de/blog/?attachment_id=50</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas S.</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-53603</link>
		<dc:creator>Thomas S.</dc:creator>
		<pubDate>Tue, 17 Feb 2009 00:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-53603</guid>
		<description>Hello Thanks for this great information - it took a long time to figure out what went wrong - in my RCP - THANKS !

/TS</description>
		<content:encoded><![CDATA[<p>Hello Thanks for this great information &#8211; it took a long time to figure out what went wrong &#8211; in my RCP &#8211; THANKS !</p>
<p>/TS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg Rostanin</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-48612</link>
		<dc:creator>Oleg Rostanin</dc:creator>
		<pubDate>Sun, 03 Aug 2008 14:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-48612</guid>
		<description>Hello,

many thanks for yor code.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>many thanks for yor code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Biju</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-29287</link>
		<dc:creator>Biju</dc:creator>
		<pubDate>Thu, 09 Aug 2007 06:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-29287</guid>
		<description>Hi 

    I am facing a problem , that is in my rcp application, after creating the projects if I close and reopen the Navigator, a fresh navigator view is shown. I am not able to see the projects created earlier in it..

Any Idea to solve this.

Thanks

Biju</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>    I am facing a problem , that is in my rcp application, after creating the projects if I close and reopen the Navigator, a fresh navigator view is shown. I am not able to see the projects created earlier in it..</p>
<p>Any Idea to solve this.</p>
<p>Thanks</p>
<p>Biju</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin McGuire</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-20873</link>
		<dc:creator>Kevin McGuire</dc:creator>
		<pubDate>Fri, 11 May 2007 21:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-20873</guid>
		<description>In 3.3 build N20070510 Vista, I dropped the example in and ran it as a rcpCNF.product.  Everything came up ok but new projects would not show up in the navigator.

I ran it as a platform.ide.product and it worked.  Curiously, running it as a rcpCNF.product thereafter also worked, so presumably there was something left in workspace state that made the difference.</description>
		<content:encoded><![CDATA[<p>In 3.3 build N20070510 Vista, I dropped the example in and ran it as a rcpCNF.product.  Everything came up ok but new projects would not show up in the navigator.</p>
<p>I ran it as a platform.ide.product and it worked.  Curiously, running it as a rcpCNF.product thereafter also worked, so presumably there was something left in workspace state that made the difference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Eken</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-15385</link>
		<dc:creator>M Eken</dc:creator>
		<pubDate>Tue, 20 Mar 2007 11:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-15385</guid>
		<description>Found the issue, I had to register the actions in my ApplicationActionBarAdvisor.makeActions, then the shortcuts work

    protected void makeActions(IWorkbenchWindow window) {
        copyAction = ActionFactory.COPY.create(window);
        register(copyAction);
        pasteAction = ActionFactory.PASTE.create(window);
        register(pasteAction);
        deleteAction = ActionFactory.DELETE.create(window);
        register(deleteAction);
        ....</description>
		<content:encoded><![CDATA[<p>Found the issue, I had to register the actions in my ApplicationActionBarAdvisor.makeActions, then the shortcuts work</p>
<p>    protected void makeActions(IWorkbenchWindow window) {<br />
        copyAction = ActionFactory.COPY.create(window);<br />
        register(copyAction);<br />
        pasteAction = ActionFactory.PASTE.create(window);<br />
        register(pasteAction);<br />
        deleteAction = ActionFactory.DELETE.create(window);<br />
        register(deleteAction);<br />
        &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Eken</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-14911</link>
		<dc:creator>M Eken</dc:creator>
		<pubDate>Fri, 16 Mar 2007 15:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-14911</guid>
		<description>I&#039;ve also noticed that the keyboard shortcuts don&#039;t work in the example. Even though the copy, paste, delete etc. actions are available (through the context menu), their shortcuts don&#039;t work. Any ideas?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also noticed that the keyboard shortcuts don&#8217;t work in the example. Even though the copy, paste, delete etc. actions are available (through the context menu), their shortcuts don&#8217;t work. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Eken</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-14873</link>
		<dc:creator>M Eken</dc:creator>
		<pubDate>Fri, 16 Mar 2007 09:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-14873</guid>
		<description>Well, should&#039;ve consulted bugzilla first. Apparently, this is a known issue, see
https://bugs.eclipse.org/bugs/show_bug.cgi?id=118420</description>
		<content:encoded><![CDATA[<p>Well, should&#8217;ve consulted bugzilla first. Apparently, this is a known issue, see<br />
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=118420" rel="nofollow">https://bugs.eclipse.org/bugs/show_bug.cgi?id=118420</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Eken</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-14870</link>
		<dc:creator>M Eken</dc:creator>
		<pubDate>Fri, 16 Mar 2007 09:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-14870</guid>
		<description>I&#039;ve just tried the example and everything seems fine. I can create new projects and they&#039;re visible immediately. However, the next time I start up the application I see the following on my console

!ENTRY org.eclipse.core.resources 2 10035 2007-03-16 10:02:41.359
!MESSAGE A workspace crash was detected. The previous session did not exit normally.

This is quite reproducible (clear workspace, create project, restart application, and it happens), do you have any idea why it happens?

Note that you have to turn on the logging (-consoleLog option) to see this message.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just tried the example and everything seems fine. I can create new projects and they&#8217;re visible immediately. However, the next time I start up the application I see the following on my console</p>
<p>!ENTRY org.eclipse.core.resources 2 10035 2007-03-16 10:02:41.359<br />
!MESSAGE A workspace crash was detected. The previous session did not exit normally.</p>
<p>This is quite reproducible (clear workspace, create project, restart application, and it happens), do you have any idea why it happens?</p>
<p>Note that you have to turn on the logging (-consoleLog option) to see this message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Emerson</title>
		<link>http://www.cpuidle.de/blog/?attachment_id=50&#038;cpage=1#comment-12984</link>
		<dc:creator>John Emerson</dc:creator>
		<pubDate>Thu, 01 Mar 2007 21:02:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cpuidle.de/blog/wp-content/rcpcnf.zip#comment-12984</guid>
		<description>I understand that this has been reported before, however I wonder if the problem has cropped up again under 322.

I have tried rcpcnf.zip with Eclipse 322 on both Windows (JRE 1.5.0_11) &amp; MacOS (JRE 1.5.0_06). In both cases I saw the same behavior reported by Jef Gearhart. New projects don&#039;t show up unless their parent directory exists at runtime, for example, runtime-rcpCNF.product. The same is true when a product is exported via the product export wizard.

I would appreciate any help in this regard. Thanks in advance,
John Emerson</description>
		<content:encoded><![CDATA[<p>I understand that this has been reported before, however I wonder if the problem has cropped up again under 322.</p>
<p>I have tried rcpcnf.zip with Eclipse 322 on both Windows (JRE 1.5.0_11) &amp; MacOS (JRE 1.5.0_06). In both cases I saw the same behavior reported by Jef Gearhart. New projects don&#8217;t show up unless their parent directory exists at runtime, for example, runtime-rcpCNF.product. The same is true when a product is exported via the product export wizard.</p>
<p>I would appreciate any help in this regard. Thanks in advance,<br />
John Emerson</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.664 seconds -->
