<?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: ViewStack in Flash	</title>
	<atom:link href="https://jessewarden.com/2005/02/viewstack-in-flash.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2005/02/viewstack-in-flash.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Fri, 11 Feb 2005 20:16:17 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Tim Scollick		</title>
		<link>https://jessewarden.com/2005/02/viewstack-in-flash.html/comment-page-1#comment-2357</link>

		<dc:creator><![CDATA[Tim Scollick]]></dc:creator>
		<pubDate>Fri, 11 Feb 2005 20:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=727#comment-2357</guid>

					<description><![CDATA[Who knows?  Maybe you did have the best answer.  This is an article that shuns the extends keyword like the plague:
http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-toolbox.html 

Of course, it also assumes that you&#039;re designing your solution from the group up (which isn&#039;t the case for you).
]]></description>
			<content:encoded><![CDATA[<p>Who knows?  Maybe you did have the best answer.  This is an article that shuns the extends keyword like the plague:<br />
<a href="http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-toolbox.html" rel="nofollow ugc">http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-toolbox.html</a> </p>
<p>Of course, it also assumes that you&#8217;re designing your solution from the group up (which isn&#8217;t the case for you).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2005/02/viewstack-in-flash.html/comment-page-1#comment-2356</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 10 Feb 2005 19:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=727#comment-2356</guid>

					<description><![CDATA[...ok, just had a talk with my co-worker who is a pretty good developer.  He explained my attitude is from someone who hasn&#039;t done a lot of collaboration with other developers on projects.  Another developer would have no idea that I had implemented those methods.  I should instead inherit like you said.

Live and learn!]]></description>
			<content:encoded><![CDATA[<p>&#8230;ok, just had a talk with my co-worker who is a pretty good developer.  He explained my attitude is from someone who hasn&#8217;t done a lot of collaboration with other developers on projects.  Another developer would have no idea that I had implemented those methods.  I should instead inherit like you said.</p>
<p>Live and learn!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2005/02/viewstack-in-flash.html/comment-page-1#comment-2355</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 10 Feb 2005 18:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=727#comment-2355</guid>

					<description><![CDATA[If you look at the View class compared to the Flex class, it is incomplete.  As stated in my other article about &lt;a href=&quot;http://www.jessewarden.com/archives/2005/02/my_new_love_for.html&quot; rel=&quot;nofollow&quot;&gt;View&lt;/a&gt;.

I think View needed a few other methods to make it a worthwhile class to inherit from.

It is dangerous, but I see the benefit from it, so do all of my classes, and we have QA setup in place (plus other developers to body check my work).  The class is inheritanly not finished to my needs, and I don&#039;t feel like changing the existing class with prototype because I actually have access to it, unlike MovieClip or Array.

Extending a class JUST to implement one method seems like a bad decision to me.  Implementing a Decorator pattern via prototype doesn&#039;t seem like a good decision either since everyone is inheriting form it, so why not just improve on the base class?

I hope that explains my decision.]]></description>
			<content:encoded><![CDATA[<p>If you look at the View class compared to the Flex class, it is incomplete.  As stated in my other article about <a href="http://www.jessewarden.com/archives/2005/02/my_new_love_for.html" rel="nofollow">View</a>.</p>
<p>I think View needed a few other methods to make it a worthwhile class to inherit from.</p>
<p>It is dangerous, but I see the benefit from it, so do all of my classes, and we have QA setup in place (plus other developers to body check my work).  The class is inheritanly not finished to my needs, and I don&#8217;t feel like changing the existing class with prototype because I actually have access to it, unlike MovieClip or Array.</p>
<p>Extending a class JUST to implement one method seems like a bad decision to me.  Implementing a Decorator pattern via prototype doesn&#8217;t seem like a good decision either since everyone is inheriting form it, so why not just improve on the base class?</p>
<p>I hope that explains my decision.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tim Scollick		</title>
		<link>https://jessewarden.com/2005/02/viewstack-in-flash.html/comment-page-1#comment-2354</link>

		<dc:creator><![CDATA[Tim Scollick]]></dc:creator>
		<pubDate>Thu, 10 Feb 2005 16:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=727#comment-2354</guid>

					<description><![CDATA[Cool stuff, Jesse.  But why do you edit the mx.core.View class?  Editing MM&#039;s base classes seems a little dangerous don&#039;t you think?  Why don&#039;t you just extend mx.core.View with the new method?]]></description>
			<content:encoded><![CDATA[<p>Cool stuff, Jesse.  But why do you edit the mx.core.View class?  Editing MM&#8217;s base classes seems a little dangerous don&#8217;t you think?  Why don&#8217;t you just extend mx.core.View with the new method?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2005/02/viewstack-in-flash.html/comment-page-1#comment-2353</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 10 Feb 2005 15:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=727#comment-2353</guid>

					<description><![CDATA[Because you might have other objects created in your class (although you should let View handle this), you cannot depend on depth.  Although I do like the Flex API better, the point here is depth, currently, is not always accurate of what is in your class AND in the future, this may change...]]></description>
			<content:encoded><![CDATA[<p>Because you might have other objects created in your class (although you should let View handle this), you cannot depend on depth.  Although I do like the Flex API better, the point here is depth, currently, is not always accurate of what is in your class AND in the future, this may change&#8230;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
