<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Rocking Team</title>
	
	<link>http://www.rockingteam.com</link>
	<description>Technology @ Your Finger Tips... Computer, Web, Gadget, Mobile, Automobile, Movie Releated News Articles..</description>
	<lastBuildDate>Fri, 19 Mar 2010 17:44:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RockingTeam" /><feedburner:info uri="rockingteam" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>Technology @ Your Finger Tips... Computer, Web, Gadget, Mobile, Automobile, Movie Releated News Articles..</itunes:subtitle><item>
		<title>Java Tutorial : The super and this Keywords</title>
		<link>http://feedproxy.google.com/~r/RockingTeam/~3/tR-R3x0IL3g/</link>
		<comments>http://www.rockingteam.com/2010/03/java-tutorial-the-super-and-this-keywords/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:44:24 +0000</pubDate>
		<dc:creator>alexi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Tutorial]]></category>
		<category><![CDATA[Keyword]]></category>
		<category><![CDATA[Super]]></category>
		<category><![CDATA[This]]></category>

		<guid isPermaLink="false">http://www.rockingteam.com/?p=2782</guid>
		<description><![CDATA[Java provides the super keyword that enables a subclass to refer to its superclass. The super keyword is used to access:

superclass constructors
superclass methods and variables

Consider a Java application, which consists of multiple classes. The subclass in the application needs to reuse the constructor of the superclass. In this application, super keyword is used as a method and [...]]]></description>
			<content:encoded><![CDATA[<p>Java provides the super keyword that enables a subclass to refer to its superclass. The super keyword is used to access:</p>
<ul>
<li>superclass constructors</li>
<li>superclass methods and variables</li>
</ul>
<p>Consider a Java application, which consists of multiple classes. The subclass in the application needs to reuse the constructor of the superclass. In this application, super keyword is used as a method and invokes the constructor of its immediate superclass. The syntax to invoke the constructor of a superclass using the super() method is:</p>
<blockquote><p>super (&lt;parameter1&gt;, &lt;parameter 2&gt;,..,&lt;parameterN&gt;);</p></blockquote>
<p>In the above syntax, &lt;parameter1&gt;, &lt;parameter 2&gt;,..,&lt;parameterN&gt; refer to the list of parameters that you need to pass to the constructor of the superclass.</p>
<p>If no parameters are passed to the super() method, it invokes the default constructor of the superclass. If the superclass contains the overloaded constructor, you can pass parameters to the super() method to invoke a particular constructor. When you use the super() method in the constructor of the subclass, it should be the first executable statement in the constructor.</p>
<p>Consider a Java application, in which both, superclass and subclass, have member variables with the same name. In this application, the super keyword is used to access the member variables of the superclass. The syntax to access the member variable of a superclass is:</p>
<blockquote><p>super.&lt;variable&gt;;</p></blockquote>
<p>The subclass can also access the member methods of the superclass using the super keyword. The following code snippet shows the Literature subclass accessing the member variable of the Book superclass:</p>
<blockquote><p>class Book<br />
{<br />
int categoryCode;<br />
}<br />
class Literature extends Book<br />
{<br />
int categoryCode;<br />
public void input(int c1, int c2)<br />
{<br />
super.categoryCode=c1;<br />
categoryCode=c2;<br />
}<br />
}</p></blockquote>
<p>In the above code snippet, the Book class contains the categoryCode variable to store the category of a book, such as literature, science, fiction, suspense, and history. The Literature class also contains the categoryCode variable to store the subcategory of a book. For example for literature category, the subcategories are English, French, Hindi, and Russian. The input() method accepts two values for c1 and c2 variables. The value that you pass for c1 variable is assigned to the superclass variable whereas the value of the c2 variable is assigned to the subclass variable. The this keyword is used to refer to the current object. You can use the this keyword when a method defined in a Java class needs to refer to the object used to invoke that method, as shown in the following code snippet:</p>
<blockquote><p>Book(int bcode, double bprice)<br />
{<br />
this.bookCode=bcode;<br />
this.bookPrice=bprice;<br />
}</p></blockquote>
<p>In the above code snippet, the this keyword refers to the object that invokes the Book() constructor.</p>
<p>Another situation where you can use the this keyword is when the local and instance variables have the same name. For example, the Book class has two member variables, bookCode and bookPrice. The constructor of the Book class is used to initialize its member. If the formal parameters passed to the constructor have the same name as instance variables, you need to use the this keyword to refer to the<br />
instance variables. The following code snippet shows how to use the this keyword when instance and formal parameters have the same name:</p>
<blockquote><p>Book(int bcode, double bprice)<br />
{<br />
this.bcode=bcode;<br />
this.bprice=bprice;<br />
}</p></blockquote>
<p>In the above code snippet, this keyword refers to the instance variables, bcode and bprice. The values of the formal parameters, bcode and bprice of the Book() constructor are assigned to the instance variables.</p>
<p>In addition, you can use the this keyword in a constructor of a class to invoke another constructor of the class. Unlike the super keyword, the this keyword can invoke the constructor of the same class. The following code snippet shows how to invoke a constructor using the this keyword:</p>
<blockquote><p>class Book<br />
{<br />
public Book(String bname)<br />
{<br />
this(bname, 1001);<br />
}<br />
public Book(String bname, int bcode)<br />
{<br />
bookName=bname;<br />
bookCode=bcode;<br />
}<br />
}</p></blockquote>

<p><a href="http://feedads.g.doubleclick.net/~a/HbsbzUAZvRaGXvRyYCxIOTbe_-o/0/da"><img src="http://feedads.g.doubleclick.net/~a/HbsbzUAZvRaGXvRyYCxIOTbe_-o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HbsbzUAZvRaGXvRyYCxIOTbe_-o/1/da"><img src="http://feedads.g.doubleclick.net/~a/HbsbzUAZvRaGXvRyYCxIOTbe_-o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RockingTeam/~4/tR-R3x0IL3g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rockingteam.com/2010/03/java-tutorial-the-super-and-this-keywords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rockingteam.com/2010/03/java-tutorial-the-super-and-this-keywords/</feedburner:origLink></item>
		<item>
		<title>Microsoft Silverlight for Symbian – Beta</title>
		<link>http://feedproxy.google.com/~r/RockingTeam/~3/kvMA34WLlnw/</link>
		<comments>http://www.rockingteam.com/2010/03/microsoft-silverlight-for-symbian-%e2%80%93-beta/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 16:50:39 +0000</pubDate>
		<dc:creator>alexi</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://www.rockingteam.com/?p=2778</guid>
		<description><![CDATA[ Silverlight is a cross-browser, cross-platform implementation of the .NET Framework for creating media experiences and rich interactive applications for the Web on desktop computers and mobile phones. Silverlight beta contains an installer for Symbian^1 devices and developer tools for developing Silverlight applications on Nokia Symbian^1 (S60 5th Edition) mobile devices.
Nokia Beta Labs announced the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rockingteam.com/wp-content/uploads/2010/03/SilverlightLogo.jpg"><img class="alignleft size-full wp-image-2779" title="SilverlightLogo" src="http://www.rockingteam.com/wp-content/uploads/2010/03/SilverlightLogo.jpg" alt="" width="210" height="169" /></a> Silverlight is a cross-browser, cross-platform implementation of the .NET Framework for creating media experiences and rich interactive applications for the Web on desktop computers and mobile phones. Silverlight beta contains an installer for Symbian^1 devices and developer tools for developing Silverlight applications on Nokia Symbian^1 (S60 5th Edition) mobile devices.</p>
<p>Nokia Beta Labs announced the public availability of <a href="http://betalabs.nokia.com/apps/silverlight" target="_blank">Microsoft Silverlight for Symbian – Beta</a>. This beta release is primarily focused towards the developer community so they can start building great experiences on mobile devices.</p>
<p>Silverlight includes a runtime that is optimized to display content on memory-constrained devices. Silverlight support for Nokia Symbian^1 devices includes:</p>
<ul>
<li>The ability to view Silverlight applications in the mobile browser.</li>
<li>Tools to build Silverlight applications that target devices.</li>
</ul>
<p>Downloads :</p>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=184639" target="_blank">Download Silverlight for Symbian – Beta Developer Tools</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=184637" target="_blank">Download Silverlight for Symbian – Beta</a> (device installer)</li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/T17bXne6VI7GDwVJ3xqBnx8V7nI/0/da"><img src="http://feedads.g.doubleclick.net/~a/T17bXne6VI7GDwVJ3xqBnx8V7nI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/T17bXne6VI7GDwVJ3xqBnx8V7nI/1/da"><img src="http://feedads.g.doubleclick.net/~a/T17bXne6VI7GDwVJ3xqBnx8V7nI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RockingTeam/~4/kvMA34WLlnw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rockingteam.com/2010/03/microsoft-silverlight-for-symbian-%e2%80%93-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<enclosure url="http://go.microsoft.com/fwlink/?LinkID=184639" length="11412480" type="application/octet-stream" /><media:content url="http://go.microsoft.com/fwlink/?LinkID=184639" fileSize="11412480" type="application/octet-stream" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Silverlight is a cross-browser, cross-platform implementation of the .NET Framework for creating media experiences and rich interactive applications for the Web on desktop computers and mobile phones. Silverlight beta contains an installer for Symbian^1 </itunes:subtitle><itunes:summary> Silverlight is a cross-browser, cross-platform implementation of the .NET Framework for creating media experiences and rich interactive applications for the Web on desktop computers and mobile phones. Silverlight beta contains an installer for Symbian^1 devices and developer tools for developing Silverlight applications on Nokia Symbian^1 (S60 5th Edition) mobile devices. Nokia Beta Labs announced the [...]</itunes:summary><itunes:keywords>Applications, Nokia, beta, microsoft, silverlight, symbian</itunes:keywords><feedburner:origLink>http://www.rockingteam.com/2010/03/microsoft-silverlight-for-symbian-%e2%80%93-beta/</feedburner:origLink></item>
		<item>
		<title>Stop Buffering of a YouTube Video</title>
		<link>http://feedproxy.google.com/~r/RockingTeam/~3/gR4sr43eZTM/</link>
		<comments>http://www.rockingteam.com/2010/03/stop-buffering-of-a-youtube-video/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 16:41:47 +0000</pubDate>
		<dc:creator>alexi</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.rockingteam.com/?p=2774</guid>
		<description><![CDATA[Now you can stop the buffering of the YouTube video if you don&#8217;t want to watch it. To stop the buffering of the video right click the video and click the &#8216;Stop Download&#8217;.

Until now, a simple trick to stop buffering a YouTube video was to fast forward to the end of the video. YouTube added an option to stop [...]]]></description>
			<content:encoded><![CDATA[<p>Now you can stop the buffering of the YouTube video if you don&#8217;t want to watch it. To stop the buffering of the video right click the video and click the &#8216;Stop Download&#8217;.</p>
<p><a href="http://www.rockingteam.com/wp-content/uploads/2010/03/youtube-stop-buffering.jpg"><img class="aligncenter size-full wp-image-2775" title="youtube-stop-buffering" src="http://www.rockingteam.com/wp-content/uploads/2010/03/youtube-stop-buffering.jpg" alt="" width="500" height="289" /></a></p>
<p>Until now, a simple trick to stop buffering a YouTube video was to fast forward to the end of the video. YouTube added an option to stop the download: right-click on the video and click on &#8220;Stop download&#8221;.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/H2VLNd0JeFUgRaGtbz6sAsHeFbc/0/da"><img src="http://feedads.g.doubleclick.net/~a/H2VLNd0JeFUgRaGtbz6sAsHeFbc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/H2VLNd0JeFUgRaGtbz6sAsHeFbc/1/da"><img src="http://feedads.g.doubleclick.net/~a/H2VLNd0JeFUgRaGtbz6sAsHeFbc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RockingTeam/~4/gR4sr43eZTM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rockingteam.com/2010/03/stop-buffering-of-a-youtube-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rockingteam.com/2010/03/stop-buffering-of-a-youtube-video/</feedburner:origLink></item>
		<item>
		<title>Intel® X25-V SSD Priced at $125</title>
		<link>http://feedproxy.google.com/~r/RockingTeam/~3/50Bql0CCzEI/</link>
		<comments>http://www.rockingteam.com/2010/03/intel%c2%ae-x25-v-ssd-priced-at-125/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 07:14:03 +0000</pubDate>
		<dc:creator>alexi</dc:creator>
				<category><![CDATA[Accessories]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Affordable SSD]]></category>
		<category><![CDATA[SSD]]></category>

		<guid isPermaLink="false">http://www.rockingteam.com/?p=2770</guid>
		<description><![CDATA[The Intel® X25-V Value SATA Solid-State Drive (SSD) is targeted for value netbooks, dual-drive desktop PCs as a &#8220;boot drive&#8221; and advanced RAID 0 configurations to boost system and gaming performance. The 40GB SSD retails for $125.
Highlights

Intel introduces X25-V Value SATA Solid-State Drive (SSD) at $125 entry price point.
Perfect for value netbooks or as boot [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-2769" title="X25-V-SSD" src="http://www.rockingteam.com/wp-content/uploads/2010/03/X25-V-SSD-300x123.jpg" alt="" width="300" height="123" />The Intel® X25-V Value SATA Solid-State Drive (SSD) is targeted for value netbooks, dual-drive desktop PCs as a &#8220;boot drive&#8221; and advanced RAID 0 configurations to boost system and gaming performance. The 40GB SSD retails for $125.</p>
<h2>Highlights</h2>
<ul>
<li>Intel introduces X25-V Value SATA Solid-State Drive (SSD) at $125 entry price point.</li>
<li>Perfect for value netbooks or as boot drive for dual-drive SSD/HDD desktops, X25-V delivers SSD performance at an affordable price.</li>
<li>Desktop PCs can now combine an SSD with HDD to boost overall system performance and speed system boot up and opening of applications</li>
</ul>
<p><a href="http://www.rockingteam.com/wp-content/uploads/2010/03/X25-V-retail-box.jpg"><img class="alignleft size-medium wp-image-2771" title="X25-V-retail-box" src="http://www.rockingteam.com/wp-content/uploads/2010/03/X25-V-retail-box-300x295.jpg" alt="" width="300" height="295" /></a>The Intel X25-V features 40GB of 34nm NAND flash memory. This non-volatile memory retains data, even when the power is turned off, and is used in applications such as smartphones, personal music players, memory cards or SSDs for fast and reliable storage of data. SSD benefits over a traditional HDD include higher performance, battery saving and ruggedness. &#8220;Adding the Intel X25-V to our existing family of high-performance SSDs gives our resellers a full range of high-performing, quality SSDs for notebook upgrades, dual-drive desktop set ups or embedded applications,&#8221; said Pete Hazen, director of marketing for the Intel NAND Solutions Group. &#8220;SSD adoption continues to be one of the more exciting trends in personal computing, and this entry-level product enables users to enjoy the productivity and performance benefits of Intel SSDs at a new price point.&#8221;</p>

<p><a href="http://feedads.g.doubleclick.net/~a/BcZJPkMjZ_P3FEJsyyCJGsB3-L0/0/da"><img src="http://feedads.g.doubleclick.net/~a/BcZJPkMjZ_P3FEJsyyCJGsB3-L0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BcZJPkMjZ_P3FEJsyyCJGsB3-L0/1/da"><img src="http://feedads.g.doubleclick.net/~a/BcZJPkMjZ_P3FEJsyyCJGsB3-L0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RockingTeam/~4/50Bql0CCzEI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rockingteam.com/2010/03/intel%c2%ae-x25-v-ssd-priced-at-125/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.rockingteam.com/2010/03/intel%c2%ae-x25-v-ssd-priced-at-125/</feedburner:origLink></item>
		<item>
		<title>Yamaha FZ16 launched</title>
		<link>http://feedproxy.google.com/~r/RockingTeam/~3/id8heQzDmmw/</link>
		<comments>http://www.rockingteam.com/2010/03/yamaha-fz16-launched/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 06:57:10 +0000</pubDate>
		<dc:creator>abyvettoor</dc:creator>
				<category><![CDATA[Automobile]]></category>
		<category><![CDATA[Bikes]]></category>
		<category><![CDATA[Latest News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[FZ 150]]></category>
		<category><![CDATA[FZ 16]]></category>
		<category><![CDATA[FZ 16 price]]></category>
		<category><![CDATA[FZ 16 reviews]]></category>
		<category><![CDATA[FZ 16 Specifications]]></category>
		<category><![CDATA[FZ in india]]></category>
		<category><![CDATA[FZ16]]></category>
		<category><![CDATA[Latest bikes]]></category>
		<category><![CDATA[motor cycles]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[pics]]></category>
		<category><![CDATA[stills]]></category>
		<category><![CDATA[two wheelers]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[yamaha]]></category>
		<category><![CDATA[yamaha bikes]]></category>
		<category><![CDATA[yamaha FZ 16]]></category>
		<category><![CDATA[yamaha in india]]></category>
		<category><![CDATA[yamaha Superbikes]]></category>
		<category><![CDATA[yamaha technology]]></category>

		<guid isPermaLink="false">http://www.rockingteam.com/?p=532</guid>
		<description><![CDATA[ 

  
 
 
 
 
 
 
 
 
 
 
The all new macho street fighter – Yamaha FZ 16 has been launched by Yamaha Motors,India last day.FZ16 is a taut, muscular adrenaline pumping machine. The bike is designed and engineered with the potential for active and even aggressive enjoyment for its riders,due to revolutionize the biking scene in the country . The bike boasts of a [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p class="content_fnt"><a href="http://www.rockingteam.com/wp-content/uploads/2008/09/fz16.jpg"><img class="alignleft size-full wp-image-534" src="http://www.rockingteam.com/wp-content/uploads/2008/09/fz16.jpg" alt="" width="450" height="328" /></a></p>
<p class="content_fnt">  </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt"> </p>
<p class="content_fnt">The all new macho street fighter – Yamaha FZ 16 has been launched by Yamaha Motors,India last day.FZ16 is a taut, muscular adrenaline pumping machine. The bike is designed and engineered with the potential for active and even aggressive enjoyment for its riders,due to revolutionize the biking scene in the country . The bike boasts of a 153cc air-cooled, 4-stroke, single-cylinder high torque engine for active city riding. The single-axis balancer reduces vibration for more comfortable riding. A negative pressure type Φ26mm carburetor with TPS (Throttle Position Sensor) contributes to outstanding engine response on the FZ16. The placement of this model&#8217;s &#8216;MidShip Muffler&#8217; is toward the centre of the machine to achieve good concentration of mass, exhaust efficiency and handling. While 5-speed transmission provides a smooth operational touch, the gear ratios are set to provide optimum performance and agility in city riding. </p>
<p class="content_fnt">Running performance and handling of the bike is ensured by A Monocross suspension. At the same time it inhibits machine bottoming while riding with a tandem passenger and provides a very comfortable ride. The front suspension is 41 mm thick, besides good absorption of shocks from the road, this suspension also provides good damping characteristics during acceleration and braking.</p>
<p class="content_fnt"> </p>
<p>FZ 16 also has India&#8217;s first &#8220;140/60-17&#8243; size rear radial with a 60% aspect ratio contributes to better<a href="http://www.rockingteam.com/wp-content/uploads/2008/09/1381_fz16.jpg"><img class="aligncenter size-full wp-image-533" src="http://www.rockingteam.com/wp-content/uploads/2008/09/1381_fz16.jpg" alt="" width="499" height="209" /></a>grip and handling stability. To achieve sufficient cooling effect, the cylinder head on the FZ16 engine is designed with especially large fins as well as a shroud (air intake cowl) to effectively direct airflow to the engine.</p>
<p>It is being offered in 3 colours &#8211; Lava Red, Midnight Black and Flaming Orange and is priced at Rs. 65,000 ex showroom (all India).I think this is the one that will rule the indian roads.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/rXh73tgUZthGbp3yHreKD41Xntw/0/da"><img src="http://feedads.g.doubleclick.net/~a/rXh73tgUZthGbp3yHreKD41Xntw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rXh73tgUZthGbp3yHreKD41Xntw/1/da"><img src="http://feedads.g.doubleclick.net/~a/rXh73tgUZthGbp3yHreKD41Xntw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RockingTeam/~4/id8heQzDmmw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rockingteam.com/2010/03/yamaha-fz16-launched/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.rockingteam.com/2010/03/yamaha-fz16-launched/</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss>
