<?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>programcreek.com</title>
	<atom:link href="http://www.programcreek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programcreek.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 May 2012 00:59:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>OpenNLP Tutorial</title>
		<link>http://www.programcreek.com/2012/05/opennlp-tutorial/</link>
		<comments>http://www.programcreek.com/2012/05/opennlp-tutorial/#comments</comments>
		<pubDate>Sat, 12 May 2012 15:17:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[OpenNLP]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=7131</guid>
		<description><![CDATA[The Apache OpenNLP library is a machine learning based toolkit for the processing of natural language text. It includes a sentence detector, a tokenizer, a name finder, a parts-of-speech (POS) tagger, a chunker, and a parser. It has very good APIs that can be easily integrated with a Java program. However, the documentation is not [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/05/opennlp-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research in Software Engineering &#8211; Available Data/Artifacts</title>
		<link>http://www.programcreek.com/2012/05/research-in-software-engineering-available-artifacts/</link>
		<comments>http://www.programcreek.com/2012/05/research-in-software-engineering-available-artifacts/#comments</comments>
		<pubDate>Tue, 08 May 2012 01:37:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=3628</guid>
		<description><![CDATA[For software engineering research, there are various kinds of data available for analysis. Those are called software artifacts and they can be generated during any stage of software lifecycle, such as design, development, testing, maintenance, etc. This is the directory of artifacts available and their download addresses. I have done investigation on different kinds of [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/05/research-in-software-engineering-available-artifacts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swing vs. SWT &#8211; Side-by-side comparison</title>
		<link>http://www.programcreek.com/2012/04/swing-vs-swt-side-by-side-comparison/</link>
		<comments>http://www.programcreek.com/2012/04/swing-vs-swt-side-by-side-comparison/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 14:03:52 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[GUI]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=6993</guid>
		<description><![CDATA[In many articles, developers have compared Swing with SWT with a lot of details. However, there is not a side-by-side comparison by using a diagram which may give a direct impression of how they are different. In this post, I will compare Swing and SWT side by side and get a taste of the difference [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/04/swing-vs-swt-side-by-side-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load existing image to panel by using Eclipse SWT</title>
		<link>http://www.programcreek.com/2012/04/load-existing-image-to-panel-by-using-eclipse-swt/</link>
		<comments>http://www.programcreek.com/2012/04/load-existing-image-to-panel-by-using-eclipse-swt/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 14:49:51 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Rich Client Platform(RCP)]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=6985</guid>
		<description><![CDATA[This post also assumes that you have a standalone Eclipse RCP application. You can find out how to make one here. We may want to load an image to an application, this is also related with drawing method from GC class. We can first create an Image object and then use GC.drawImage() method to draw [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/04/load-existing-image-to-panel-by-using-eclipse-swt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make tag cloud in Java by using SWT drawing</title>
		<link>http://www.programcreek.com/2012/04/make-texttag-cloud-in-java-by-using-swt-drawing/</link>
		<comments>http://www.programcreek.com/2012/04/make-texttag-cloud-in-java-by-using-swt-drawing/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 14:36:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Rich Client Platform(RCP)]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=6980</guid>
		<description><![CDATA[This post also assumes that you have a standalone Eclipse RCP application. You can find out how to make one here. You may have tried some free tools to generate tag cloud or text cloud, but they may not exactly what you want. As a Java programmer, you can quickly implement such a function by [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/04/make-texttag-cloud-in-java-by-using-swt-drawing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Draw points or various shapes by using Eclipse SWT</title>
		<link>http://www.programcreek.com/2012/04/draw-points-or-various-shapes-by-using-eclipse-swt/</link>
		<comments>http://www.programcreek.com/2012/04/draw-points-or-various-shapes-by-using-eclipse-swt/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 02:48:23 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Rich Client Platform(RCP)]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=6971</guid>
		<description><![CDATA[If you don&#8217;t want to use latex or metapost to plot your research data, Java is also good for that. We can use SWT to draw those points on axis or any positions on a panel, and this can be done very quickly. First of all, you need to use eclipse RCP wizard to create [...]]]></description>
		<wfw:commentRss>http://www.programcreek.com/2012/04/draw-points-or-various-shapes-by-using-eclipse-swt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

