<?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: Singleton Design Pattern</title>
	<atom:link href="http://limborey.com/2010/02/08/singleton-design-pattern/feed/" rel="self" type="application/rss+xml" />
	<link>http://limborey.com/2010/02/08/singleton-design-pattern/</link>
	<description>some useful stuff related to Programming Language, Pattern &#38; technology</description>
	<lastBuildDate>Sat, 18 Jun 2011 07:42:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Xenture7</title>
		<link>http://limborey.com/2010/02/08/singleton-design-pattern/comment-page-1/#comment-140</link>
		<dc:creator>Xenture7</dc:creator>
		<pubDate>Sat, 21 Aug 2010 13:56:46 +0000</pubDate>
		<guid isPermaLink="false">http://limborey.com/?p=153#comment-140</guid>
		<description>public sealed class Singleton {
  private static Singleton instance;

  private Singleton() {}
  public static Singleton getInstance () {
          if (instance==null)
            instance = new Singleton();

       return instance;
  }
}

// looks better right?</description>
		<content:encoded><![CDATA[<p>public sealed class Singleton {<br />
  private static Singleton instance;</p>
<p>  private Singleton() {}<br />
  public static Singleton getInstance () {<br />
          if (instance==null)<br />
            instance = new Singleton();</p>
<p>       return instance;<br />
  }<br />
}</p>
<p>// looks better right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->

