<?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: Be your company MVP with GWT!</title>
	<atom:link href="http://ajaxian.com/archives/be-your-company-mvp-with-gwt/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: jorel</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-283089</link>
		<dc:creator>jorel</dc:creator>
		<pubDate>Fri, 16 Apr 2010 21:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-283089</guid>
		<description>I agree with Oleks.  The example really needs to have sufficient complexity to support the idioms being expressed.  Although this example (http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html) does not show all the elements (it is missing GIN, command pattern,  and a few others), it does present a &quot;simple as possible&quot; example of how to use MVP and event bus along with introductory unit test setup.  I would like to know if anyone has seen a solid implementation of the command pattern anywhere.  I would like to use that pattern in my upcoming GWT app. thanks in advance.</description>
		<content:encoded><![CDATA[<p>I agree with Oleks.  The example really needs to have sufficient complexity to support the idioms being expressed.  Although this example (<a href="http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html" rel="nofollow">http://code.google.com/webtoolkit/doc/latest/tutorial/mvp-architecture.html</a>) does not show all the elements (it is missing GIN, command pattern,  and a few others), it does present a &#8220;simple as possible&#8221; example of how to use MVP and event bus along with introductory unit test setup.  I would like to know if anyone has seen a solid implementation of the command pattern anywhere.  I would like to use that pattern in my upcoming GWT app. thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BonoboBoner</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275233</link>
		<dc:creator>BonoboBoner</dc:creator>
		<pubDate>Thu, 27 Aug 2009 07:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275233</guid>
		<description>@Stakka: &quot;spread across so many files, it must be a nightmare to maintain as a project grows.&quot;

Actually it is easier to maintain (at least that was my impression after porting my helloworld-style-spaghetti-code to a structured MVP-approach), since your widgets know nothing about data access for example. When trying to swap out a GWT-Tree with a TreePanel from GXT for example, you can leave the RPC as it is and just have to register a different event source for selection of tree-items, etc. It is far easier to unit-test as well.</description>
		<content:encoded><![CDATA[<p>@Stakka: &#8220;spread across so many files, it must be a nightmare to maintain as a project grows.&#8221;</p>
<p>Actually it is easier to maintain (at least that was my impression after porting my helloworld-style-spaghetti-code to a structured MVP-approach), since your widgets know nothing about data access for example. When trying to swap out a GWT-Tree with a TreePanel from GXT for example, you can leave the RPC as it is and just have to register a different event source for selection of tree-items, etc. It is far easier to unit-test as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleks</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275232</link>
		<dc:creator>Oleks</dc:creator>
		<pubDate>Thu, 27 Aug 2009 06:37:22 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275232</guid>
		<description>The stack you&#039;ve mention is not the best one inspired by the video. MVP4G (http://code.google.com/p/mvp4g/) is a better implementation of MVP/DI/Events ideas expressed during the talk.</description>
		<content:encoded><![CDATA[<p>The stack you&#8217;ve mention is not the best one inspired by the video. MVP4G (<a href="http://code.google.com/p/mvp4g/" rel="nofollow">http://code.google.com/p/mvp4g/</a>) is a better implementation of MVP/DI/Events ideas expressed during the talk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stakka</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275230</link>
		<dc:creator>Stakka</dc:creator>
		<pubDate>Wed, 26 Aug 2009 17:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275230</guid>
		<description>@BonoboBoner: We understand it&#039;s skeleton code for a larger project, requiring a bit larger initial code. But if this pattern requires this much code, spread across so many files, it must be a nightmare to maintain as a project grows.</description>
		<content:encoded><![CDATA[<p>@BonoboBoner: We understand it&#8217;s skeleton code for a larger project, requiring a bit larger initial code. But if this pattern requires this much code, spread across so many files, it must be a nightmare to maintain as a project grows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BonoboBoner</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275226</link>
		<dc:creator>BonoboBoner</dc:creator>
		<pubDate>Wed, 26 Aug 2009 15:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275226</guid>
		<description>@Critics: This is not a &quot;HelloWorld&quot;-Sample, this is supposed to be an example for writing HUGE GWT applications á la Google Wave. 

If you measure by &quot;HelloWorld&quot;-standards, even Rails is overkill for their famous 15-minute-blog-sample.</description>
		<content:encoded><![CDATA[<p>@Critics: This is not a &#8220;HelloWorld&#8221;-Sample, this is supposed to be an example for writing HUGE GWT applications á la Google Wave. </p>
<p>If you measure by &#8220;HelloWorld&#8221;-standards, even Rails is overkill for their famous 15-minute-blog-sample.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: krycek</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275221</link>
		<dc:creator>krycek</dc:creator>
		<pubDate>Wed, 26 Aug 2009 11:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275221</guid>
		<description>I just watched the presentation and read the article and had to sign up here just to agree with Stakka and Darkimmortal: hello world fail, lol</description>
		<content:encoded><![CDATA[<p>I just watched the presentation and read the article and had to sign up here just to agree with Stakka and Darkimmortal: hello world fail, lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coffeehunter</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275219</link>
		<dc:creator>coffeehunter</dc:creator>
		<pubDate>Wed, 26 Aug 2009 07:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275219</guid>
		<description>GWT is great but I&#039;m still confused of MVP concept

visit: ecofe.blogspot.com</description>
		<content:encoded><![CDATA[<p>GWT is great but I&#8217;m still confused of MVP concept</p>
<p>visit: ecofe.blogspot.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darkimmortal</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275211</link>
		<dc:creator>Darkimmortal</dc:creator>
		<pubDate>Tue, 25 Aug 2009 22:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275211</guid>
		<description>Lol, fail.</description>
		<content:encoded><![CDATA[<p>Lol, fail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SleepyCod</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275209</link>
		<dc:creator>SleepyCod</dc:creator>
		<pubDate>Tue, 25 Aug 2009 21:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275209</guid>
		<description>I couldn&#039;t agree more with Stakka, this piece of code is just a gas factory and making an hello world example of it was definitely a bad idea...</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t agree more with Stakka, this piece of code is just a gas factory and making an hello world example of it was definitely a bad idea&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stakka</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275208</link>
		<dc:creator>Stakka</dc:creator>
		<pubDate>Tue, 25 Aug 2009 20:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275208</guid>
		<description>That article should get an award for the most over engineered, code extensive Hello World example ever made. No thanks, I&#039;ll stick to JSP and AJAX.</description>
		<content:encoded><![CDATA[<p>That article should get an award for the most over engineered, code extensive Hello World example ever made. No thanks, I&#8217;ll stick to JSP and AJAX.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rubley</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275207</link>
		<dc:creator>rubley</dc:creator>
		<pubDate>Tue, 25 Aug 2009 18:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275207</guid>
		<description>Good god what a mess, do people really develop stuff this way?</description>
		<content:encoded><![CDATA[<p>Good god what a mess, do people really develop stuff this way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ErikT</title>
		<link>http://ajaxian.com/archives/be-your-company-mvp-with-gwt/comment-page-1#comment-275205</link>
		<dc:creator>ErikT</dc:creator>
		<pubDate>Tue, 25 Aug 2009 16:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7287#comment-275205</guid>
		<description>Small post bug: The Google Code MVP-link is missing a &quot; in the anchor tag.</description>
		<content:encoded><![CDATA[<p>Small post bug: The Google Code MVP-link is missing a &#8221; in the anchor tag.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

