<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tim Ashworth &#187; Frameworks</title>
	<atom:link href="http://www.timashworth.co.uk/category/frameworks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timashworth.co.uk</link>
	<description>Code, cooking and opinion, all my own work!</description>
	<lastBuildDate>Thu, 26 May 2011 08:04:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Cairngorm Getting Started Part Six &#8211; Displaying the Data</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 09:24:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=74</guid>
		<description><![CDATA[Now we&#8217;ve got the data back we need somewhere to store it.  This is where the model comes in.  Let&#8217;s create a ModelLocator called MemoryModelLocator.  It implements IModelLocator.  The interface doesn&#8217;t actually require any functions, it is just there to type the class.  Here&#8217;s the class package com.worthyashes.simpleCairngorm.model { import com.adobe.cairngorm.model.IModelLocator; [Bindable] public class MemoryModelLocator [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Five : Delegates and Responders</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 15:09:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=73</guid>
		<description><![CDATA[We&#8217;ve created our LoadXMLEvent, created our FrontController and that has linked the event with the command to get the XML. Now we need to create our next set of classes. The Delegate class deals with retriving the data, it does this by using another Cairngorm class called the ServiceLocator. As the Delegate is getting some [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Four : Events, Commands and Controllers</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 14:20:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=65</guid>
		<description><![CDATA[So we&#8217;ve had a chat about the MVC design pattern and how that relates to Cairngorm, set up the environment and we&#8217;ve discussed how Singletons work.  Now we are ready to start using the framework to create a basic application. Frameworks like Cairngorm really come into their own when you are creating a large or [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Three : Singletons</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 21:07:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=56</guid>
		<description><![CDATA[We&#8217;ve covered an overview of the MVC pattern and how it relates to Cairngorm and we&#8217;ve set up the environment and we&#8217;ve set up the environment so we can finally start to play with some code.  Nearly. There is one last concept to go over before we move on, Singletons,  I&#8217;m sure that most of [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Two : Setting up the Environment</title>
		<link>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-two-setting-up-the-environment/</link>
		<comments>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-two-setting-up-the-environment/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:26:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=34</guid>
		<description><![CDATA[For an overview of Cairngorm check out part one. OK &#8211; before we can start we need to set up the environment.  First things first go and get Cairngorm from here.  For now just download the binary, but further down the line you may want to download the source to have a look at the [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-two-setting-up-the-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part One : Overview</title>
		<link>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-one-overview/</link>
		<comments>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-one-overview/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 20:58:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=23</guid>
		<description><![CDATA[First things first I need to acknowledge David Tucker for this fantastic post that got me started. As David Tucker says in his post, though I think he&#8217;s lying, I&#8217;m no Cairngorm Expert either.  But I have used it recently and I like it.  What I&#8217;m doing with this post is to explain it as [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/cairngorm-simple-example-part-one-overview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

