<?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: Writing your own plugins for the Flex Builder debugger, part 2: a fully functional sample</title>
	<atom:link href="http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/</link>
	<description>Mike Morearty&#039;s blog</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:15:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: judah&#8217;s blog &#187; Blog Archive &#187; Extending Flex Builder - some resources</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-57483</link>
		<dc:creator>judah&#8217;s blog &#187; Blog Archive &#187; Extending Flex Builder - some resources</dc:creator>
		<pubDate>Tue, 17 Mar 2009 03:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-57483</guid>
		<description>[...] on creating your first Flex Builder Plug in  - preface - link out of [...]</description>
		<content:encoded><![CDATA[<p>[...] on creating your first Flex Builder Plug in  &#8211; preface &#8211; link out of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-51654</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Tue, 23 Sep 2008 05:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-51654</guid>
		<description>You don&#039;t need to modify any of the settings on that page.  I don&#039;t know, perhaps you clicked Finish instead of Next when going through the wizard, and are assuming that the &quot;Main View Settings&quot; dialog shown above no longer exists, and has been replaced by the one you linked to.</description>
		<content:encoded><![CDATA[<p>You don&#8217;t need to modify any of the settings on that page.  I don&#8217;t know, perhaps you clicked Finish instead of Next when going through the wizard, and are assuming that the &quot;Main View Settings&quot; dialog shown above no longer exists, and has been replaced by the one you linked to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: judah</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-51652</link>
		<dc:creator>judah</dc:creator>
		<pubDate>Tue, 23 Sep 2008 01:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-51652</guid>
		<description>Hi Mike,
Thanks so much. But I didn&#039;t even get that far. What I need help is in getting the project setup to begin with. I&#039;m having trouble knowing where to map all these values in your example here to where they should go here, http://judahfrangipane.com/temp/plugin.png.</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
Thanks so much. But I didn&#8217;t even get that far. What I need help is in getting the project setup to begin with. I&#8217;m having trouble knowing where to map all these values in your example here to where they should go here, <a href="http://judahfrangipane.com/temp/plugin.png" rel="nofollow">http://judahfrangipane.com/temp/plugin.png</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-51618</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Fri, 19 Sep 2008 22:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-51618</guid>
		<description>Judah, I just re-read this old blog post, and the only things that have changed are:

- The main class name of the plugin has changed from ExpressionTrackerPlugin.java to Activator.java

- The package name for ExpressionTrackerView.java now needs to be expressiontracker.views, with a lower case &quot;t&quot;, instead of the old expressionTracker.views.

In addition, it looks like I forgot to mention that you need to make your plugin depend on Eclipse&#039;s org.eclipse.debug.core and org.eclipse.debug.ui plugins.  You do this by double-clicking META-INF/MANIFEST.MF, going to the Dependencies tab, and clicking Add.

With these changes, the original sample works for me.</description>
		<content:encoded><![CDATA[<p>Judah, I just re-read this old blog post, and the only things that have changed are:</p>
<p>- The main class name of the plugin has changed from ExpressionTrackerPlugin.java to Activator.java</p>
<p>- The package name for ExpressionTrackerView.java now needs to be expressiontracker.views, with a lower case &quot;t&quot;, instead of the old expressionTracker.views.</p>
<p>In addition, it looks like I forgot to mention that you need to make your plugin depend on Eclipse&#8217;s org.eclipse.debug.core and org.eclipse.debug.ui plugins.  You do this by double-clicking META-INF/MANIFEST.MF, going to the Dependencies tab, and clicking Add.</p>
<p>With these changes, the original sample works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: judah&#8217;s blog &#187; Blog Archive &#187; $100 to the first person to create a Flex or AIR app</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-51527</link>
		<dc:creator>judah&#8217;s blog &#187; Blog Archive &#187; $100 to the first person to create a Flex or AIR app</dc:creator>
		<pubDate>Tue, 16 Sep 2008 06:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-51527</guid>
		<description>[...] Builder Plug in and I&#8217;ve had no luck. The closest thing to any working tutorial I found is here. I have some great ideas I&#8217;d like to create. And although Eclipse has some great features it [...]</description>
		<content:encoded><![CDATA[<p>[...] Builder Plug in and I&#8217;ve had no luck. The closest thing to any working tutorial I found is here. I have some great ideas I&#8217;d like to create. And although Eclipse has some great features it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: judah</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-51510</link>
		<dc:creator>judah</dc:creator>
		<pubDate>Mon, 15 Sep 2008 20:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-51510</guid>
		<description>Hi Mike,

I&#039;m trying to get this to work but the screens have changed so much I have no idea how to start. I downloaded eclipse yesterday as you advised to get the plug in development environment. Could you create a super simple no frills basic example? I personally don&#039;t need screen shots but just the steps I need to get to a point where I can copy and paste your code and not get 100 errors.</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>I&#8217;m trying to get this to work but the screens have changed so much I have no idea how to start. I downloaded eclipse yesterday as you advised to get the plug in development environment. Could you create a super simple no frills basic example? I personally don&#8217;t need screen shots but just the steps I need to get to a point where I can copy and paste your code and not get 100 errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-2800</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Wed, 18 Oct 2006 16:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-2800</guid>
		<description>Ido, you&#039;re right it shouldn&#039;t matter if it&#039;s Java or C++.  But I&#039;ve never tried the CDT, so I&#039;m not sure why it&#039;s failing.</description>
		<content:encoded><![CDATA[<p>Ido, you&#8217;re right it shouldn&#8217;t matter if it&#8217;s Java or C++.  But I&#8217;ve never tried the CDT, so I&#8217;m not sure why it&#8217;s failing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ido</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-2798</link>
		<dc:creator>Ido</dc:creator>
		<pubDate>Wed, 18 Oct 2006 14:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-2798</guid>
		<description>Hi Mike,
I tried that, But when I am debuggin a c++ program it only works for step over events. When I do resume (till the next breakpoint) I Can&#039;t evaluate the watch expression value anymore. It doesn&#039;t happen when I debug a regular java program only a c++ program but I thought it shouldn&#039;t matter. Do you have any idea why?</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
I tried that, But when I am debuggin a c++ program it only works for step over events. When I do resume (till the next breakpoint) I Can&#8217;t evaluate the watch expression value anymore. It doesn&#8217;t happen when I debug a regular java program only a c++ program but I thought it shouldn&#8217;t matter. Do you have any idea why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-2797</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Wed, 18 Oct 2006 14:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-2797</guid>
		<description>Ido,

What you&#039;re describing is the right way to do it -- adding logic to the debug handler in handleDebugEvents().  You would then need to tell every expression to re-evaluate and display the new value.</description>
		<content:encoded><![CDATA[<p>Ido,</p>
<p>What you&#8217;re describing is the right way to do it &#8212; adding logic to the debug handler in handleDebugEvents().  You would then need to tell every expression to re-evaluate and display the new value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ido</title>
		<link>http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/comment-page-1/#comment-2795</link>
		<dc:creator>Ido</dc:creator>
		<pubDate>Wed, 18 Oct 2006 12:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.morearty.com/blog/2006/06/07/writing-your-own-plugins-for-the-flex-builder-debugger-part-2-a-fully-functional-sample/#comment-2795</guid>
		<description>Hi Mike,
Thanks for the post. It&#039;s great. 
I need to make something similar to what you need only I need the variable to referesh themself on every break point. I tried to add an event on the DebugHandler but it just doesn&#039;t seems to work. any idea?

Thanks again,
Ido</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
Thanks for the post. It&#8217;s great.<br />
I need to make something similar to what you need only I need the variable to referesh themself on every break point. I tried to add an event on the DebugHandler but it just doesn&#8217;t seems to work. any idea?</p>
<p>Thanks again,<br />
Ido</p>
]]></content:encoded>
	</item>
</channel>
</rss>
