<?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: Using JSNI in GWT</title>
	<atom:link href="http://www.emgarten.com/using-jsni-in-gwt.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emgarten.com/using-jsni-in-gwt.htm</link>
	<description>Exploring the realms of code..</description>
	<lastBuildDate>Thu, 03 Dec 2009 02:03:16 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: MiST</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-284</link>
		<dc:creator>MiST</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-284</guid>
		<description>Great, now I can finally make GWT handle the post-auth methods. Sweet. I love it!</description>
		<content:encoded><![CDATA[<p>Great, now I can finally make GWT handle the post-auth methods. Sweet. I love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m2je</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-279</link>
		<dc:creator>m2je</dc:creator>
		<pubDate>Sat, 24 Jan 2009 13:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-279</guid>
		<description>very nice!!!!</description>
		<content:encoded><![CDATA[<p>very nice!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mac</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-277</link>
		<dc:creator>mac</dc:creator>
		<pubDate>Fri, 26 Dec 2008 12:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-277</guid>
		<description>Can I retrive variable like this:

var arr = [{&quot;id&quot;:1,&quot;name&quot;:&quot;mac&quot;},{&quot;id&quot;:2,&quot;name&quot;:&quot;mac2&quot;}];

into GWT? What type must be retrieved by function?</description>
		<content:encoded><![CDATA[<p>Can I retrive variable like this:</p>
<p>var arr = [{"id":1,"name":"mac"},{"id":2,"name":"mac2"}];</p>
<p>into GWT? What type must be retrieved by function?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-268</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 08 Aug 2008 14:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-268</guid>
		<description>A good article but it should be stressed using jsni is supposed to only be used VERY sparingly. Use RPC calls whereever possible.

Also try not to use static class/method modifiers - use the lazy form.

Reason being:

The GWT compiler optimises best when left alone to prune and work out where static (i.e non polymorphic/reflection using code) so it can optimise fully - JSNI routines are static and outside the scope of the compiler aswell...</description>
		<content:encoded><![CDATA[<p>A good article but it should be stressed using jsni is supposed to only be used VERY sparingly. Use RPC calls whereever possible.</p>
<p>Also try not to use static class/method modifiers &#8211; use the lazy form.</p>
<p>Reason being:</p>
<p>The GWT compiler optimises best when left alone to prune and work out where static (i.e non polymorphic/reflection using code) so it can optimise fully &#8211; JSNI routines are static and outside the scope of the compiler aswell&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-259</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Sun, 13 Apr 2008 20:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-259</guid>
		<description>Simple and clear article that solved a problem that I was having for days now.

I was trying to get the event from the YouTube player into GWT to discover when the video had ended, and couldn&#039;t find such a simple solution.

 Thanks.</description>
		<content:encoded><![CDATA[<p>Simple and clear article that solved a problem that I was having for days now.</p>
<p>I was trying to get the event from the YouTube player into GWT to discover when the video had ended, and couldn&#8217;t find such a simple solution.</p>
<p> Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-257</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 05 Mar 2008 20:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-257</guid>
		<description>Great article!

A couple of points:
1.  You must pass a reference to the current class you can NOT do the following:
this.@com.company.client.BlueApp::runApp()();

2.  If you want parameters in your function, add them in the &quot;function()&quot; declaration:

$wnd.showBlueApp = function (someInt) {
   x.@com.company.client.BlueApp::runApp(I)(someInt);
};</description>
		<content:encoded><![CDATA[<p>Great article!</p>
<p>A couple of points:<br />
1.  You must pass a reference to the current class you can NOT do the following:<br />
<a href="mailto:this.@com.company.client.BlueApp">this.@com.company.client.BlueApp</a>::runApp()();</p>
<p>2.  If you want parameters in your function, add them in the &#8220;function()&#8221; declaration:</p>
<p>$wnd.showBlueApp = function (someInt) {<br />
   <a href="mailto:x.@com.company.client.BlueApp">x.@com.company.client.BlueApp</a>::runApp(I)(someInt);<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedz</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-253</link>
		<dc:creator>Pedz</dc:creator>
		<pubDate>Tue, 11 Dec 2007 14:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-253</guid>
		<description>Great article, very clear. It will help a lot of people like me, thank you.</description>
		<content:encoded><![CDATA[<p>Great article, very clear. It will help a lot of people like me, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Estanislao</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-228</link>
		<dc:creator>Rey Estanislao</dc:creator>
		<pubDate>Thu, 13 Sep 2007 06:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-228</guid>
		<description>Thanks! It helps me a lot. Now I can call functions from js to java and vice versa. Your the man! Great article...</description>
		<content:encoded><![CDATA[<p>Thanks! It helps me a lot. Now I can call functions from js to java and vice versa. Your the man! Great article&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-226</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Mon, 10 Sep 2007 10:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-226</guid>
		<description>Hi,
I used this code but I is not showing the alert message given in the runApp() and it is also not showing the error.

I want to call a javascript method which is defined in another.js file.
How can I use that method in my GWT client.
Please help me.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I used this code but I is not showing the alert message given in the runApp() and it is also not showing the error.</p>
<p>I want to call a javascript method which is defined in another.js file.<br />
How can I use that method in my GWT client.<br />
Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-224</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Thu, 30 Aug 2007 10:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-224</guid>
		<description>Great stuff - been struggling with getting an applet talking to a GWT app, this did the trick perfectly.  Nice, simple example.
Thanks.</description>
		<content:encoded><![CDATA[<p>Great stuff &#8211; been struggling with getting an applet talking to a GWT app, this did the trick perfectly.  Nice, simple example.<br />
Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
