<?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: [Bindable] on a read-only getter is unnecessary and will be ignored.</title>
	<atom:link href="http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:51:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Tim John</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-10815</link>
		<dc:creator>Tim John</dc:creator>
		<pubDate>Fri, 03 Jun 2011 09:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-10815</guid>
		<description>@seanos I tried the method you suggested, having the getter as public and the setter as protected/private, but it seems that the setter&#039;s namespace is overridden to public. As a result, the property isn&#039;t read-only and I can change it from outside the class.

Here&#039;s a good example of how to truly &lt;a href=&quot;http://www.rubenswieringa.com/blog/binding-read-only-accessors-in-flex/comment-page-8#comment-122896&quot; rel=&quot;nofollow&quot;&gt;bind to a read-only getter&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@seanos I tried the method you suggested, having the getter as public and the setter as protected/private, but it seems that the setter&#8217;s namespace is overridden to public. As a result, the property isn&#8217;t read-only and I can change it from outside the class.</p>
<p>Here&#8217;s a good example of how to truly <a href="http://www.rubenswieringa.com/blog/binding-read-only-accessors-in-flex/comment-page-8#comment-122896" rel="nofollow">bind to a read-only getter</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seanos</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-1902</link>
		<dc:creator>seanos</dc:creator>
		<pubDate>Fri, 24 Jul 2009 09:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-1902</guid>
		<description>To get around this problem I created a setter, but set it private. From an external class this property is still &#039;read-only&#039;, but the event does get fired implicitly by the [bindable] private setter function</description>
		<content:encoded><![CDATA[<p>To get around this problem I created a setter, but set it private. From an external class this property is still &#8216;read-only&#8217;, but the event does get fired implicitly by the [bindable] private setter function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tink</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-1901</link>
		<dc:creator>Tink</dc:creator>
		<pubDate>Thu, 23 Jul 2009 08:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-1901</guid>
		<description>I&#039;m with Josh.

Everything you mark bindable should have a custom event that&#039;s fired when the property changes.</description>
		<content:encoded><![CDATA[<p>I&#8217;m with Josh.</p>
<p>Everything you mark bindable should have a custom event that&#8217;s fired when the property changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: evden eve</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-1900</link>
		<dc:creator>evden eve</dc:creator>
		<pubDate>Sat, 18 Jul 2009 15:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-1900</guid>
		<description>good works</description>
		<content:encoded><![CDATA[<p>good works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh McDonald</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-1899</link>
		<dc:creator>Josh McDonald</dc:creator>
		<pubDate>Thu, 16 Jul 2009 07:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-1899</guid>
		<description>Not only does using a custom event name per property improve performance, it makes it trivial to add some [Event] metadata to your class or MXML document, and then you can trigger off property changes easily using events, without using the MXML binding synax or going through BindingUtil.</description>
		<content:encoded><![CDATA[<p>Not only does using a custom event name per property improve performance, it makes it trivial to add some [Event] metadata to your class or MXML document, and then you can trigger off property changes easily using events, without using the MXML binding synax or going through BindingUtil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [Bindable] on a read-only getter is unnecessary and will be ignored. &#8211; Josh Talks Flash &#124; Enigmatic Thought</title>
		<link>http://joshblog.net/2009/07/15/flex-readonly-bindable-getter-ignored-warning-explained/#comment-1898</link>
		<dc:creator>[Bindable] on a read-only getter is unnecessary and will be ignored. &#8211; Josh Talks Flash &#124; Enigmatic Thought</dc:creator>
		<pubDate>Thu, 16 Jul 2009 02:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=656#comment-1898</guid>
		<description>[...] Josh Talks Flash Josh posted about something I just ran into the other day.Â  The warning [Bindable] on a read-only getter is unnecessary and will be ignored appeared when I was creating a Model for an MVC application.Â  Since I was using an ArrayCollection [...]</description>
		<content:encoded><![CDATA[<p>[...] Josh Talks Flash Josh posted about something I just ran into the other day.Â  The warning [Bindable] on a read-only getter is unnecessary and will be ignored appeared when I was creating a Model for an MVC application.Â  Since I was using an ArrayCollection [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

