<?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>The Developer&#039;s Info</title>
	<atom:link href="http://thedevelopersinfo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedevelopersinfo.com</link>
	<description>Resource which helps to developers to learn and use new technologies and application frameworks.</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:43:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Refactoring: Inline Temp</title>
		<link>http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/</link>
		<comments>http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 19:38:23 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[Methods preparation]]></category>
		<category><![CDATA[Refactoring methods]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1662</guid>
		<description><![CDATA[<p>As I showed in previous post it is useful to use Inline Method when we have a lot of functionality which is on several methods and need to put this functionality to the one method.
In this post I want to show, in my point of view, subtechnique of Inline Method which is called Inline Temp.
Why do <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/">Refactoring: Inline Temp</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/' rel='bookmark' title='Permanent Link: Refactoring: Inline Method'>Refactoring: Inline Method</a></li>
<li><a href='http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/' rel='bookmark' title='Permanent Link: Refactoring: Extract Method'>Refactoring: Extract Method</a></li>
<li><a href='http://thedevelopersinfo.com/2010/02/24/using-inputstream-in-java/' rel='bookmark' title='Permanent Link: Using InputStream in Java'>Using InputStream in Java</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refactoring: Inline Method</title>
		<link>http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/</link>
		<comments>http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 20:10:07 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[Methods preparation]]></category>
		<category><![CDATA[Refactoring methods]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1656</guid>
		<description><![CDATA[<p>In this post I want to show other practice which works in other way then Extract Method technique.
It is called Inline Method.
As usual I will show example for understanding.
This is simple example which has several simple methods:</p>

/**
 * This example shows how to use "Inline method" technique
 * @author The Developer's Info
 *
 */
public class InlineMethodExample <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/">Refactoring: Inline Method</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/' rel='bookmark' title='Permanent Link: Refactoring: Inline Temp'>Refactoring: Inline Temp</a></li>
<li><a href='http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/' rel='bookmark' title='Permanent Link: Refactoring: Extract Method'>Refactoring: Extract Method</a></li>
<li><a href='http://thedevelopersinfo.com/2009/11/04/getting-formatted-string-from-strings-xml-in-android/' rel='bookmark' title='Permanent Link: Getting formatted string from strings.xml in Android'>Getting formatted string from strings.xml in Android</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Refactoring: Extract Method</title>
		<link>http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/</link>
		<comments>http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 19:37:18 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[Methods preparation]]></category>
		<category><![CDATA[Refactoring methods]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1640</guid>
		<description><![CDATA[<p>I didn&#8217;t update resource because I hadn&#8217;t time for it. Now I start working on it as I worked before &#8211; I hope  .
I changed my workplace and now I am working at SoftServe company. Currently I don&#8217;t work with Android platform.
I start this category for new developers who only start their way in this <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/">Refactoring: Extract Method</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/08/17/refactoring-inline-method/' rel='bookmark' title='Permanent Link: Refactoring: Inline Method'>Refactoring: Inline Method</a></li>
<li><a href='http://thedevelopersinfo.com/2010/08/18/refactoring-inline-temp/' rel='bookmark' title='Permanent Link: Refactoring: Inline Temp'>Refactoring: Inline Temp</a></li>
<li><a href='http://thedevelopersinfo.com/2009/12/14/using-xml-file-resources-in-android/' rel='bookmark' title='Permanent Link: Using XML file resources in Android'>Using XML file resources in Android</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/08/16/refactoring-extract-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.9 Beta is available</title>
		<link>http://thedevelopersinfo.com/2010/04/23/netbeans-6-9-beta-is-available/</link>
		<comments>http://thedevelopersinfo.com/2010/04/23/netbeans-6-9-beta-is-available/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 22:10:04 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[IDEs]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[NetBeans news]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1624</guid>
		<description><![CDATA[<p>The NetBeans team announced that beta of 6.9 version is available for download.</p>
Feature highlights:
OSGi

Develop OSGi bundles with Maven
Bundled Felix container, ability to register other containers such as Equinox
Use OSGi bundles in a NetBeans RCP application

NetBeans Platform

OSGi interoperability (developing and consuming OSGi bundles in Platform-based applications)
Felix 2.0.3 OSGi support, experimental Equinox support
Convert NetBeans modules into OSGi bundles <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/04/23/netbeans-6-9-beta-is-available/">NetBeans 6.9 Beta is available</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/02/17/netbeans-6-9-m1-is-available/' rel='bookmark' title='Permanent Link: NetBeans IDE 6.9 Milestone 1 is available'>NetBeans IDE 6.9 Milestone 1 is available</a></li>
<li><a href='http://thedevelopersinfo.com/2009/10/23/netbeans-6-8-beta-available-for-downloading/' rel='bookmark' title='Permanent Link: NetBeans 6.8 Beta available for downloading'>NetBeans 6.8 Beta available for downloading</a></li>
<li><a href='http://thedevelopersinfo.com/2009/12/10/netbeans-ide-6-8-is-out/' rel='bookmark' title='Permanent Link: NetBeans IDE 6.8 is out'>NetBeans IDE 6.8 is out</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/04/23/netbeans-6-9-beta-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IntelliJ IDEA 9.0.2 is out</title>
		<link>http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/</link>
		<comments>http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 11:44:24 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[IDEs]]></category>
		<category><![CDATA[IntelliJ IDEA]]></category>
		<category><![CDATA[IntelliJ IDEA news]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1621</guid>
		<description><![CDATA[<p>Download page and Release Notes page.</p>


<p>Related posts:IntelliJ IDEA 9.0.1 released
IntelliJ IDEA 8.1.4 is out
IntelliJ IDEA 9 <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/">IntelliJ IDEA 9.0.2 is out</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/01/24/intellij-idea-9-0-1-released/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9.0.1 released'>IntelliJ IDEA 9.0.1 released</a></li>
<li><a href='http://thedevelopersinfo.com/2009/11/13/intellij-idea-8-1-4-is-out/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 8.1.4 is out'>IntelliJ IDEA 8.1.4 is out</a></li>
<li><a href='http://thedevelopersinfo.com/2009/12/09/intellij-idea-9-is-released/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9 is released'>IntelliJ IDEA 9 is released</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Sequence Input Stream in Java</title>
		<link>http://thedevelopersinfo.com/2010/04/19/using-sequence-input-stream-in-java/</link>
		<comments>http://thedevelopersinfo.com/2010/04/19/using-sequence-input-stream-in-java/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 12:57:05 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java Filter Streams]]></category>
		<category><![CDATA[Java I/O]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1616</guid>
		<description><![CDATA[<p>In this post I am going to show you how to use SequenceInputStream in Java. A SequenceInputStream first reads all the bytes from the first stream in the sequence, then all the bytes from the second, third and so on. When the end of one stream is reached, that stream is closed and the next data <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/04/19/using-sequence-input-stream-in-java/">Using Sequence Input Stream in Java</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/03/01/using-url-in-java/' rel='bookmark' title='Permanent Link: Using URL in Java'>Using URL in Java</a></li>
<li><a href='http://thedevelopersinfo.com/2010/03/15/using-buffered-streams-in-java/' rel='bookmark' title='Permanent Link: Using buffered streams in Java'>Using buffered streams in Java</a></li>
<li><a href='http://thedevelopersinfo.com/2010/03/15/multitargeting-output-streams-in-java/' rel='bookmark' title='Permanent Link: Multitargeting output streams in Java'>Multitargeting output streams in Java</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/04/19/using-sequence-input-stream-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MyEclipse 8.5 is released</title>
		<link>http://thedevelopersinfo.com/2010/04/16/myeclipse-8-5-is-released/</link>
		<comments>http://thedevelopersinfo.com/2010/04/16/myeclipse-8-5-is-released/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 15:49:39 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Eclipse news]]></category>
		<category><![CDATA[IDEs]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1608</guid>
		<description><![CDATA[<p>Genuitec announced that MyEclipse 8.5 is released.
For me, MyEclipse is on of the best Eclipse based IDE in the world.
The newest release includes updates for many popular open source frameworks (including Spring and Hibernate), and includes C/ALM (Collaboration Application Lifecycle Management) technologies. For Blue users, MyEclipse 8.5 includes support for Linux operating systems and so on.</p>


<p>Related <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/04/16/myeclipse-8-5-is-released/">MyEclipse 8.5 is released</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2009/11/30/myeclipse-8-0-is-released/' rel='bookmark' title='Permanent Link: MyEclipse 8.0 is released'>MyEclipse 8.0 is released</a></li>
<li><a href='http://thedevelopersinfo.com/2009/11/06/intellij-idea-9-beta-is-released/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9 Beta is released'>IntelliJ IDEA 9 Beta is released</a></li>
<li><a href='http://thedevelopersinfo.com/2009/12/09/intellij-idea-9-is-released/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9 is released'>IntelliJ IDEA 9 is released</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/04/16/myeclipse-8-5-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java SE Development Kit 6 Update 20 is available</title>
		<link>http://thedevelopersinfo.com/2010/04/16/java-se-development-kit-6-update-20-is-available/</link>
		<comments>http://thedevelopersinfo.com/2010/04/16/java-se-development-kit-6-update-20-is-available/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 09:01:29 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java news]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1606</guid>
		<description><![CDATA[<p>You can download it from this link.
Details you can find on Release Notes page.</p>


<p>Related posts:Java SE Development Kit 6 Update 19 is available
Java SE Development Kit 6 Update 18 is available
IntelliJ IDEA 9.0.2 <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/04/16/java-se-development-kit-6-update-20-is-available/">Java SE Development Kit 6 Update 20 is available</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/03/30/java-se-development-kit-6-update-19-is-available/' rel='bookmark' title='Permanent Link: Java SE Development Kit 6 Update 19 is available'>Java SE Development Kit 6 Update 19 is available</a></li>
<li><a href='http://thedevelopersinfo.com/2010/01/15/java-se-development-kit-6-update-18-is-available/' rel='bookmark' title='Permanent Link: Java SE Development Kit 6 Update 18 is available'>Java SE Development Kit 6 Update 18 is available</a></li>
<li><a href='http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9.0.2 is out'>IntelliJ IDEA 9.0.2 is out</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/04/16/java-se-development-kit-6-update-20-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java SE Development Kit 6 Update 19 is available</title>
		<link>http://thedevelopersinfo.com/2010/03/30/java-se-development-kit-6-update-19-is-available/</link>
		<comments>http://thedevelopersinfo.com/2010/03/30/java-se-development-kit-6-update-19-is-available/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 21:45:35 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java news]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1601</guid>
		<description><![CDATA[<p>You can download it from this link.
Details you can find on Release Notes page.</p>


<p>Related posts:Java SE Development Kit 6 Update 20 is available
Java SE Development Kit 6 Update 18 is available
IntelliJ IDEA 9.0.2 <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/03/30/java-se-development-kit-6-update-19-is-available/">Java SE Development Kit 6 Update 19 is available</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/04/16/java-se-development-kit-6-update-20-is-available/' rel='bookmark' title='Permanent Link: Java SE Development Kit 6 Update 20 is available'>Java SE Development Kit 6 Update 20 is available</a></li>
<li><a href='http://thedevelopersinfo.com/2010/01/15/java-se-development-kit-6-update-18-is-available/' rel='bookmark' title='Permanent Link: Java SE Development Kit 6 Update 18 is available'>Java SE Development Kit 6 Update 18 is available</a></li>
<li><a href='http://thedevelopersinfo.com/2010/04/22/intellij-idea-9-0-2-is-out/' rel='bookmark' title='Permanent Link: IntelliJ IDEA 9.0.2 is out'>IntelliJ IDEA 9.0.2 is out</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/03/30/java-se-development-kit-6-update-19-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using system properties in Java</title>
		<link>http://thedevelopersinfo.com/2010/03/25/using-system-properties-in-java/</link>
		<comments>http://thedevelopersinfo.com/2010/03/25/using-system-properties-in-java/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 17:01:27 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java 1.6]]></category>
		<category><![CDATA[Java other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1589</guid>
		<description><![CDATA[<p>The System class maintains a Properties object that describes the configuration of the current working environment. System properties include information about the current user, the current version of the Java runtime, and the character used to separate components of a file path name.
In this post I am going to show simple example which shows how to <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com/2010/03/25/using-system-properties-in-java/">Using system properties in Java</a></span>


Related posts:<ol><li><a href='http://thedevelopersinfo.com/2010/03/25/using-properties-in-java/' rel='bookmark' title='Permanent Link: Using Properties in Java'>Using Properties in Java</a></li>
<li><a href='http://thedevelopersinfo.com/2010/02/25/getting-working-directory-in-java/' rel='bookmark' title='Permanent Link: Getting working directory in Java'>Getting working directory in Java</a></li>
<li><a href='http://thedevelopersinfo.com/2009/10/24/moving-file-or-directory-to-other-directory-in-java/' rel='bookmark' title='Permanent Link: Moving file or directory to other directory in Java'>Moving file or directory to other directory in Java</a></li>
</ol>]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com/2010/03/25/using-system-properties-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
