<?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: No More Writing Getters and Setters in Flex</title>
	<atom:link href="http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/feed" rel="self" type="application/rss+xml" />
	<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex</link>
	<description>News that matters for Web Developers</description>
	<lastBuildDate>Sat, 04 Feb 2012 20:26:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Frank</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-611314</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 09 May 2008 22:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-611314</guid>
		<description>Wow.  Awesome stuff.  Auto generating getters and setters is definitely a huge help.  Sure you only need them in complex situations, but the fact that the mundane part gets auto-gen&#039;ed is very nice.</description>
		<content:encoded><![CDATA[<p>Wow.  Awesome stuff.  Auto generating getters and setters is definitely a huge help.  Sure you only need them in complex situations, but the fact that the mundane part gets auto-gen&#8217;ed is very nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathanael de Jager</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-295085</link>
		<dc:creator>Nathanael de Jager</dc:creator>
		<pubDate>Mon, 01 Oct 2007 16:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-295085</guid>
		<description>Using getters can also help you avoid having your variables set before the instance of your class is fully created.</description>
		<content:encoded><![CDATA[<p>Using getters can also help you avoid having your variables set before the instance of your class is fully created.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Fendall</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-281993</link>
		<dc:creator>Tony Fendall</dc:creator>
		<pubDate>Tue, 18 Sep 2007 21:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-281993</guid>
		<description>Something which largely refutes my previous comment:
In AS3 you can override a getter and setter, but you can&#039;t override a property.  In this case then, it&#039;s a good idea to use getters and setters in components which are likely to be extended in the future</description>
		<content:encoded><![CDATA[<p>Something which largely refutes my previous comment:<br />
In AS3 you can override a getter and setter, but you can&#8217;t override a property.  In this case then, it&#8217;s a good idea to use getters and setters in components which are likely to be extended in the future</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bjorn</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-280905</link>
		<dc:creator>Bjorn</dc:creator>
		<pubDate>Mon, 17 Sep 2007 23:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-280905</guid>
		<description>Flex dev is full of repetitive coding. Getters/Setters the no. 1 culprit.
I&#039;ll try any tool that provides code automation in Eclipse.</description>
		<content:encoded><![CDATA[<p>Flex dev is full of repetitive coding. Getters/Setters the no. 1 culprit.<br />
I&#8217;ll try any tool that provides code automation in Eclipse.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-280845</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Mon, 17 Sep 2007 22:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-280845</guid>
		<description>With most getters/setters I write, I many times have to check bounds or values on the setter and/or calling commitProperties().  So for consistency I write getters and setters as a convention.  

Maybe I am missing something, but when reading and learning how to write components, the books I have read make use of getters/setters extensively.  Also looking at the conventions used in the Flex SDK, the Adobe engineers seem to use getters and setters everywhere (so can they be all that bad).  

As for saving the typing - sure it doesn&#039;t save much time, but typing them is just a plain old pain in the ass.</description>
		<content:encoded><![CDATA[<p>With most getters/setters I write, I many times have to check bounds or values on the setter and/or calling commitProperties().  So for consistency I write getters and setters as a convention.  </p>
<p>Maybe I am missing something, but when reading and learning how to write components, the books I have read make use of getters/setters extensively.  Also looking at the conventions used in the Flex SDK, the Adobe engineers seem to use getters and setters everywhere (so can they be all that bad).  </p>
<p>As for saving the typing &#8211; sure it doesn&#8217;t save much time, but typing them is just a plain old pain in the ass.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Fendall</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-280812</link>
		<dc:creator>Tony Fendall</dc:creator>
		<pubDate>Mon, 17 Sep 2007 21:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-280812</guid>
		<description>Barney has a good point.  If you only need to get and set the variable then just make it public.  You only need to create getters and setters when the behaviour is more complicated, and thus can&#039;t be generated.

In reality developers spend less than 10% of their time actually writing code (most is spent on design and debugging), so anything that only saves you 20-30 charecters at a time doesn&#039;t really make much difference to your development cycle.</description>
		<content:encoded><![CDATA[<p>Barney has a good point.  If you only need to get and set the variable then just make it public.  You only need to create getters and setters when the behaviour is more complicated, and thus can&#8217;t be generated.</p>
<p>In reality developers spend less than 10% of their time actually writing code (most is spent on design and debugging), so anything that only saves you 20-30 charecters at a time doesn&#8217;t really make much difference to your development cycle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Campbell</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-280807</link>
		<dc:creator>Campbell</dc:creator>
		<pubDate>Mon, 17 Sep 2007 21:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-280807</guid>
		<description>I got me a swanky logitec G15 keyboard that has macros. and have a whole macro bank for as3. Just highlight the private var and hit M3. very cool if you get into the groove using them.</description>
		<content:encoded><![CDATA[<p>I got me a swanky logitec G15 keyboard that has macros. and have a whole macro bank for as3. Just highlight the private var and hit M3. very cool if you get into the groove using them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barney Boisvert</title>
		<link>http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex/comment-page-1#comment-280607</link>
		<dc:creator>Barney Boisvert</dc:creator>
		<pubDate>Mon, 17 Sep 2007 18:10:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.digitalmediaminute.com/article/2672/no-more-writing-getters-and-setters-in-flex#comment-280607</guid>
		<description>Why, pray tell, would you ever write a getter/setter in Flex that you didn&#039;t have to hand code?  The whole point of implicit getters and setters is that you can gain the benefits of getters and setters WITHOUT HAVING TO WRITE THEM.</description>
		<content:encoded><![CDATA[<p>Why, pray tell, would you ever write a getter/setter in Flex that you didn&#8217;t have to hand code?  The whole point of implicit getters and setters is that you can gain the benefits of getters and setters WITHOUT HAVING TO WRITE THEM.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

