<?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>BarneyBlog &#187; eclipse</title>
	<atom:link href="http://www.barneyb.com/barneyblog/category/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Mon, 02 Mar 2020 13:20:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Subclipse 1.6&#039;s AWESOME New Commit Dialog</title>
		<link>https://www.barneyb.com/barneyblog/2010/01/25/subclipse-commit-dialog/</link>
		<comments>https://www.barneyb.com/barneyblog/2010/01/25/subclipse-commit-dialog/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 19:48:12 +0000</pubDate>
		<dc:creator>barneyb</dc:creator>
				<category><![CDATA[aside]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=1192</guid>
		<description><![CDATA[I just upgrade to Subclipse 1.6 and it has an awesome new feature: diffs right in the commit dialog.Â  It seemed a common use case for myself that when it came time to commit, I'd open my commit dialog and cycle through the files writing my commit message in Kate because I couldn't type while [...]]]></description>
			<content:encoded><![CDATA[<p>I just upgrade to Subclipse 1.6 and it has an <strong>awesome </strong>new feature: diffs right in the commit dialog.Â  It seemed a common use case for myself that when it came time to commit, I'd open my commit dialog and cycle through the files writing my commit message in Kate because I couldn't type while looking at the diffs.Â  Then I'd paste the message into the commit dialog and hit OK.Â  With the 1.6 release you can now see your commits right next to your message, and switch back and forth directly.Â  Kick ASS!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.barneyb.com/barneyblog/2010/01/25/subclipse-commit-dialog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse and JUnit</title>
		<link>https://www.barneyb.com/barneyblog/2008/11/06/eclipse-and-junit/</link>
		<comments>https://www.barneyb.com/barneyblog/2008/11/06/eclipse-and-junit/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 05:57:25 +0000</pubDate>
		<dc:creator>barneyb</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.barneyb.com/barneyblog/?p=548</guid>
		<description><![CDATA[I started building a little Java app this evenings.Â  First time I've done Java SE work in a long time, and it's kind of nice.Â  Not sure why I picked Java instead of Groovy, but whatever.Â  Probably the same reason people go home for the holidays.
In any case, being the good developer I am, after [...]]]></description>
			<content:encoded><![CDATA[<p>I started building a little Java app this evenings.Â  First time I've done Java SE work in a long time, and it's kind of nice.Â  Not sure why I picked Java instead of Groovy, but whatever.Â  Probably the same reason people go home for the holidays.</p>
<p>In any case, being the good developer I am, after designing the core interfaces, I wrote some unit tests using JUnit 4.Â  Right click on the file in Package Explorer, hit "Run as JUnit Test" and it fires up in a fast view to show you how you did.Â  All very handy.Â  After a few tests, i figured I should build some test suites, but I really didn't want to.Â  I don't know about anyone else, but I always end up forgetting to register some test or another, and then I create a regression that would get caught by that test, but since it's not registered it doesn't run, and it's just bad.Â  So I didn't, and continued to run the tests individually.</p>
<p>After half an hour or so so, I had the idea to try right clicking on a package and see if I could run all the test in that package.Â  I was quite pleased to see that you can.Â  Same thing works at the source folder and project levels.Â  Little efficiency improvements like that make Barney a happy boy.Â  Of course, still have to write the suites if I want to run them from CI or the like, but this project at least will very likely never get there.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.barneyb.com/barneyblog/2008/11/06/eclipse-and-junit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eclipse/Ant Trick</title>
		<link>https://www.barneyb.com/barneyblog/2006/07/27/eclipseant-trick/</link>
		<comments>https://www.barneyb.com/barneyblog/2006/07/27/eclipseant-trick/#comments</comments>
		<pubDate>Thu, 27 Jul 2006 19:37:52 +0000</pubDate>
		<dc:creator>barneyb</dc:creator>
				<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=173</guid>
		<description><![CDATA[Eclipse has very nice Ant integration, letting you rrun a build file from the context menu all over the place, either via a dialog for selecting the specific target, or using the last/default target.&#160; What I didn't know until today, however, is that you can right click on a target in the Outline view and [...]]]></description>
			<content:encoded><![CDATA[<p>Eclipse has very nice Ant integration, letting you rrun a build file from the context menu all over the place, either via a dialog for selecting the specific target, or using the last/default target.&nbsp; What I didn't know until today, however, is that you can right click on a target in the Outline view and run that target directly, without having to go through the normal target selection dialog.</p>
<p>If you use Ant, definitely useful.&nbsp; If not, reenforcement that it's worth a bit of digging to learn about your tools, so you can leverage them most effectively.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.barneyb.com/barneyblog/2006/07/27/eclipseant-trick/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
