<?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: Inheritance between ColdFusion and Flex</title>
	<atom:link href="http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/</link>
	<description>Flex, AIR, ColdFusion, and everything in between</description>
	<lastBuildDate>Thu, 15 Dec 2011 04:02:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: whitemamba</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-93</link>
		<dc:creator>whitemamba</dc:creator>
		<pubDate>Thu, 16 Oct 2008 19:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-93</guid>
		<description>The reason you had to do that (for flashmech&#039;s knowledge) is that in CF, the cfproperty tags are stictly for instance data that is being passed remotely (Web Services, AMF, etc), and to provide additional &quot;metadata&quot; for a CFC. They are altogether useless otherwise and are not really a part of the class/object itself so to speak, so they are not inherited. Did that make sense?</description>
		<content:encoded><![CDATA[<p>The reason you had to do that (for flashmech&#8217;s knowledge) is that in CF, the cfproperty tags are stictly for instance data that is being passed remotely (Web Services, AMF, etc), and to provide additional &#8220;metadata&#8221; for a CFC. They are altogether useless otherwise and are not really a part of the class/object itself so to speak, so they are not inherited. Did that make sense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flashmech</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-79</link>
		<dc:creator>flashmech</dc:creator>
		<pubDate>Mon, 15 Sep 2008 02:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-79</guid>
		<description>ah! That&#039;s why I think my question was n00bish~ loL~

Thanks for answering! I should really try my hands on some backend programming one day. :)</description>
		<content:encoded><![CDATA[<p>ah! That&#8217;s why I think my question was n00bish~ loL~</p>
<p>Thanks for answering! I should really try my hands on some backend programming one day. <img src='http://flexoop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-77</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Sun, 14 Sep 2008 23:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-77</guid>
		<description>Ah, OK.  I see what you mean.  If these were just value Objects then yes, but in our system, these were actually predefined and had other methods and properties already associated with them in the CFC.  Plus, by just putting the cfproperties, you lose the relationship between the 2 objects and the business objects (in my company&#039;s case) had a relationship that was shown by Review extending Activity.</description>
		<content:encoded><![CDATA[<p>Ah, OK.  I see what you mean.  If these were just value Objects then yes, but in our system, these were actually predefined and had other methods and properties already associated with them in the CFC.  Plus, by just putting the cfproperties, you lose the relationship between the 2 objects and the business objects (in my company&#8217;s case) had a relationship that was shown by Review extending Activity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flashmech</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-75</link>
		<dc:creator>flashmech</dc:creator>
		<pubDate>Sun, 14 Sep 2008 07:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-75</guid>
		<description>haha.. actually what I meant is, since you have declare the properties again in the subclass, wouldn&#039;t it work the same way without the &quot;extends&quot; attribute altogether?</description>
		<content:encoded><![CDATA[<p>haha.. actually what I meant is, since you have declare the properties again in the subclass, wouldn&#8217;t it work the same way without the &#8220;extends&#8221; attribute altogether?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gareth</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-74</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Sun, 14 Sep 2008 02:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-74</guid>
		<description>Hey Flashmech,
No worries about the question.  I probably didn&#039;t explain myself as well as I should have :)

In the ColdFusion component tag, there is an &quot;extends&quot; attribute.  This would specify the CFC (i.e. other object) that you are extending.  There is going to be some duplication of cfproperty tags between the object it is extending and the object that is inheriting from it, but that appears to be the only way to get Flex to &quot;know&quot; about the properties when it accesses them remotely.  In the above example, the &#039;extends=&quot;path.to.cfc.activity&quot;&#039; is the cfc that it is extending (in this case it would be activity.cfc)

Hopefully that answers your question, but if not feel free to post again.</description>
		<content:encoded><![CDATA[<p>Hey Flashmech,<br />
No worries about the question.  I probably didn&#8217;t explain myself as well as I should have <img src='http://flexoop.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In the ColdFusion component tag, there is an &#8220;extends&#8221; attribute.  This would specify the CFC (i.e. other object) that you are extending.  There is going to be some duplication of cfproperty tags between the object it is extending and the object that is inheriting from it, but that appears to be the only way to get Flex to &#8220;know&#8221; about the properties when it accesses them remotely.  In the above example, the &#8216;extends=&#8221;path.to.cfc.activity&#8221;&#8216; is the cfc that it is extending (in this case it would be activity.cfc)</p>
<p>Hopefully that answers your question, but if not feel free to post again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flashmech</title>
		<link>http://flexoop.com/2008/09/inheritance-between-coldfusion-and-flex/comment-page-1/#comment-73</link>
		<dc:creator>flashmech</dc:creator>
		<pubDate>Sat, 13 Sep 2008 23:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://flexfusion.archfamily.com/?p=31#comment-73</guid>
		<description>Hi Gareth!

I am no ColdFusion programmer, so may sound a bit noobish in this question.

Just asking out of curiousity, how would you know if it&#039;s extending if you&#039;re declaring the properties?</description>
		<content:encoded><![CDATA[<p>Hi Gareth!</p>
<p>I am no ColdFusion programmer, so may sound a bit noobish in this question.</p>
<p>Just asking out of curiousity, how would you know if it&#8217;s extending if you&#8217;re declaring the properties?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

