<?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: Swiz 1.0 &#8211; Reflection API and Custom Metadata Processors</title>
	<atom:link href="http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/feed/" rel="self" type="application/rss+xml" />
	<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/</link>
	<description>Brutally simple micro-architecture for Rich Internet Application development with Adobe Flex</description>
	<lastBuildDate>Wed, 16 Jun 2010 08:14:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: odoenet &#187; Blog Archive &#187; Custom GeocodeProcessor with Swiz</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-182</link>
		<dc:creator>odoenet &#187; Blog Archive &#187; Custom GeocodeProcessor with Swiz</dc:creator>
		<pubDate>Wed, 31 Mar 2010 20:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-182</guid>
		<description>[...] is the ability to create custom metadata processors. To get more familiar with the idea, check this docs page. Note that some items from the docs has changed, such as you no longer extend MetadataProcessor, [...]</description>
		<content:encoded><![CDATA[<p>[...] is the ability to create custom metadata processors. To get more familiar with the idea, check this docs page. Note that some items from the docs has changed, such as you no longer extend MetadataProcessor, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: benclinkinbeard</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-141</link>
		<dc:creator>benclinkinbeard</dc:creator>
		<pubDate>Mon, 01 Feb 2010 13:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-141</guid>
		<description>Hi Sharedtut,

Please use the list at http://groups.google.com/group/swiz-framework for implementation help. Be aware though, you will have to provide more information than you have here in order to be helped. Providing sample code is usually the best way for us to figure out where you might be getting tripped up.

Thanks,
Ben</description>
		<content:encoded><![CDATA[<p>Hi Sharedtut,</p>
<p>Please use the list at <a href="http://groups.google.com/group/swiz-framework" rel="nofollow">http://groups.google.com/group/swiz-framework</a> for implementation help. Be aware though, you will have to provide more information than you have here in order to be helped. Providing sample code is usually the best way for us to figure out where you might be getting tripped up.</p>
<p>Thanks,<br />
Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharedtut</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-140</link>
		<dc:creator>Sharedtut</dc:creator>
		<pubDate>Mon, 01 Feb 2010 05:07:04 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-140</guid>
		<description>I am testing this but not having any luck.</description>
		<content:encoded><![CDATA[<p>I am testing this but not having any luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: benclinkinbeard</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-128</link>
		<dc:creator>benclinkinbeard</dc:creator>
		<pubDate>Tue, 12 Jan 2010 17:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-128</guid>
		<description>Hi Florent,

I assume you are using Flex 4? Shortly after this post we discovered that Flex 4 adds metadata to every property and method of every class when compiling debug builds. We have updated the code on GitHub to ignore that metadata (by ignoring any metadata tags that start with an underscore) to fix this problem. We have not released a new build yet, but if you pull the code down yourself you should see the errors go away.

Thanks,
Ben</description>
		<content:encoded><![CDATA[<p>Hi Florent,</p>
<p>I assume you are using Flex 4? Shortly after this post we discovered that Flex 4 adds metadata to every property and method of every class when compiling debug builds. We have updated the code on GitHub to ignore that metadata (by ignoring any metadata tags that start with an underscore) to fix this problem. We have not released a new build yet, but if you pull the code down yourself you should see the errors go away.</p>
<p>Thanks,<br />
Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florent Cailhol</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-127</link>
		<dc:creator>Florent Cailhol</dc:creator>
		<pubDate>Tue, 12 Jan 2010 15:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-127</guid>
		<description>Great stuff but TypeDescriptor seems to be buggy! If a method called toString() has any metadata, metadataHosts[metadataHostName] will fail (line 98). I made an ugly workaround:

if (metadataHostName == &quot;toString&quot;) {
	return new MetadataHostFactory().getMetadataHost( hostNode );
}</description>
		<content:encoded><![CDATA[<p>Great stuff but TypeDescriptor seems to be buggy! If a method called toString() has any metadata, metadataHosts[metadataHostName] will fail (line 98). I made an ugly workaround:</p>
<p>if (metadataHostName == &#8220;toString&#8221;) {<br />
	return new MetadataHostFactory().getMetadataHost( hostNode );<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Griffin</title>
		<link>http://swizframework.org/2009/12/swiz-1-0-reflection-api-and-custom-metadata-processors/comment-page-1/#comment-99</link>
		<dc:creator>John Griffin</dc:creator>
		<pubDate>Tue, 15 Dec 2009 14:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://swizframework.org/?p=177#comment-99</guid>
		<description>Thanks for this Ben. Being a Java programmer and now working with Flex I know what the addition of annotations (custom metadata tags) to Java5 did for the Java community. I expect this new addition to Flex to accomplish the same level additional functionality for the Flex community. This starts a whole new ballgame!</description>
		<content:encoded><![CDATA[<p>Thanks for this Ben. Being a Java programmer and now working with Flex I know what the addition of annotations (custom metadata tags) to Java5 did for the Java community. I expect this new addition to Flex to accomplish the same level additional functionality for the Flex community. This starts a whole new ballgame!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
