<?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>Tue, 24 Jan 2012 05:31:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</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>&lt;p&gt;[...] on creating your first Flex Builder Plug in  - preface - link out of [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] on creating your first Flex Builder Plug in  - preface - 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>&lt;p&gt;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.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You don't need to modify any of the settings on that page.  I don'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>&lt;p&gt;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.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Mike,
Thanks so much. But I didn't even get that far. What I need help is in getting the project setup to begin with. I'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>&lt;p&gt;Judah, I just re-read this old blog post, and the only things that have changed are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The main class name of the plugin has changed from ExpressionTrackerPlugin.java to Activator.java&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;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.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;With these changes, the original sample works for me.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Judah, I just re-read this old blog post, and the only things that have changed are:</p>

<ul>
<li><p>The main class name of the plugin has changed from ExpressionTrackerPlugin.java to Activator.java</p></li>
<li><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></li>
</ul>

<p>In addition, it looks like I forgot to mention that you need to make your plugin depend on Eclipse'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>&lt;p&gt;[...] 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 [...]&lt;/p&gt;
</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>&lt;p&gt;Hi Mike,&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>

<p>I'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'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>&lt;p&gt;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.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ido, you're right it shouldn't matter if it's Java or C++.  But I've never tried the CDT, so I'm not sure why it'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>&lt;p&gt;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?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>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't evaluate the watch expression value anymore. It doesn't happen when I debug a regular java program only a c++ program but I thought it shouldn'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>&lt;p&gt;Ido,&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ido,</p>

<p>What you'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.</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>&lt;p&gt;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?&lt;/p&gt;

&lt;p&gt;Thanks again,
Ido&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Mike,
Thanks for the post. It'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't seems to work. any idea?</p>

<p>Thanks again,
Ido</p>]]></content:encoded>
	</item>
</channel>
</rss>

