<?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: Instant Model Binding With Reflection</title>
	<atom:link href="http://dispatchevent.org/roger/instant-model-binding-with-reflection/feed/" rel="self" type="application/rss+xml" />
	<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/</link>
	<description>Collective thoughts on Flash and Flex programming</description>
	<lastBuildDate>Mon, 22 Mar 2010 00:49:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Adobe Flex Tutorial</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-143388</link>
		<dc:creator>Adobe Flex Tutorial</dc:creator>
		<pubDate>Thu, 02 Apr 2009 20:06:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-143388</guid>
		<description>Hey,
Thanks a lot for sharing that class, really useful :D. I wrote a review in french about it there :
http://www.flex-tutorial.fr/2009/04/02/flex-tips-remplir-un-model-a-partir-dun-fichier-de-configuration-xml-automatiquement/
I also added the Boolean type in your class, just adding a case to the type switch:
case &quot;Boolean&quot;:
	this[key] = value == &quot;true&quot; ? true : false;
break;

Thanks !
Fabien</description>
		<content:encoded><![CDATA[<p>Hey,<br />
Thanks a lot for sharing that class, really useful :D. I wrote a review in french about it there :<br />
<a href="http://www.flex-tutorial.fr/2009/04/02/flex-tips-remplir-un-model-a-partir-dun-fichier-de-configuration-xml-automatiquement/" rel="nofollow">http://www.flex-tutorial.fr/2009/04/02/flex-tips-remplir-un-model-a-partir-dun-fichier-de-configuration-xml-automatiquement/</a><br />
I also added the Boolean type in your class, just adding a case to the type switch:<br />
case &#8220;Boolean&#8221;:<br />
	this[key] = value == &#8220;true&#8221; ? true : false;<br />
break;</p>
<p>Thanks !<br />
Fabien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Schelter</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-36723</link>
		<dc:creator>Steve Schelter</dc:creator>
		<pubDate>Mon, 01 Oct 2007 19:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-36723</guid>
		<description>That&#039;s pretty sweet dude! You could apply that to cairngorm as well, except with that you would probably tie it to generating the VOs within the models, rather than the models themselves.</description>
		<content:encoded><![CDATA[<p>That&#8217;s pretty sweet dude! You could apply that to cairngorm as well, except with that you would probably tie it to generating the VOs within the models, rather than the models themselves.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Braunstein</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-36027</link>
		<dc:creator>Roger Braunstein</dc:creator>
		<pubDate>Sat, 29 Sep 2007 20:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-36027</guid>
		<description>@Dylan, I didn&#039;t make it clear enough, but each model binds to a single XML node, so to populate a set of models from an XML file, you should loop through the child nodes, creating a new model passing each node individually, f.ex.

&lt;pre&gt;var root:XML = XML(someloader.data);
for each (var node:XML in root.*)
{
   models.push(new SomeModel(node));
}&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@Dylan, I didn&#8217;t make it clear enough, but each model binds to a single XML node, so to populate a set of models from an XML file, you should loop through the child nodes, creating a new model passing each node individually, f.ex.</p>
<pre>var root:XML = XML(someloader.data);
for each (var node:XML in root.*)
{
   models.push(new SomeModel(node));
}</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash Teh Ripper</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-36020</link>
		<dc:creator>Flash Teh Ripper</dc:creator>
		<pubDate>Sat, 29 Sep 2007 20:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-36020</guid>
		<description>Hmm looks like something fundamental.

The next thing I&#039;m going to do is heavy testing of Your Majesty approach at the HUGE.GIS.XML file containing regular GIS data from the MapServer (usually overloaded by &quot;boundingbox&quot; and &quot;geometry&quot; tags). Let&#039;s see how it will work. I saved the link to this page and then report results of my experiment here. If you&#039;re interested.

Feeling amazed.</description>
		<content:encoded><![CDATA[<p>Hmm looks like something fundamental.</p>
<p>The next thing I&#8217;m going to do is heavy testing of Your Majesty approach at the HUGE.GIS.XML file containing regular GIS data from the MapServer (usually overloaded by &#8220;boundingbox&#8221; and &#8220;geometry&#8221; tags). Let&#8217;s see how it will work. I saved the link to this page and then report results of my experiment here. If you&#8217;re interested.</p>
<p>Feeling amazed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dylan</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-33569</link>
		<dc:creator>Dylan</dc:creator>
		<pubDate>Sat, 22 Sep 2007 22:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-33569</guid>
		<description>This is awesome. I&#039;m unclear how to get the data from the model, however.

I&#039;ve created a test class into which I&#039;m loading an XML file then instantiating &quot;bookModel&quot; and passing the XML as an argument. It compiles without errors, but I feel like I&#039;m missing something, since I can&#039;t yet do anything with it.

Any thoughts? 

Thanks for an excellent post. I&#039;m hoping to get this working asap.</description>
		<content:encoded><![CDATA[<p>This is awesome. I&#8217;m unclear how to get the data from the model, however.</p>
<p>I&#8217;ve created a test class into which I&#8217;m loading an XML file then instantiating &#8220;bookModel&#8221; and passing the XML as an argument. It compiles without errors, but I feel like I&#8217;m missing something, since I can&#8217;t yet do anything with it.</p>
<p>Any thoughts? </p>
<p>Thanks for an excellent post. I&#8217;m hoping to get this working asap.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Alves</title>
		<link>http://dispatchevent.org/roger/instant-model-binding-with-reflection/comment-page-1/#comment-33034</link>
		<dc:creator>Tony Alves</dc:creator>
		<pubDate>Fri, 21 Sep 2007 08:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/instant-model-binding-with-reflection#comment-33034</guid>
		<description>Very Nice.  I believe there has been a lot of questions on how to do this on the flexcoders group.
Thanks for sharing this little gem.

Tony</description>
		<content:encoded><![CDATA[<p>Very Nice.  I believe there has been a lot of questions on how to do this on the flexcoders group.<br />
Thanks for sharing this little gem.</p>
<p>Tony</p>
]]></content:encoded>
	</item>
</channel>
</rss>
