<?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 Java Reflection API to clean up code and speed up development</title>
	<atom:link href="http://technology.amis.nl/2012/03/19/using-java-reflection-api-to-clean-up-code-and-speed-up-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2012/03/19/using-java-reflection-api-to-clean-up-code-and-speed-up-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-java-reflection-api-to-clean-up-code-and-speed-up-development</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Saurabh S. Pawse</title>
		<link>http://technology.amis.nl/2012/03/19/using-java-reflection-api-to-clean-up-code-and-speed-up-development/#comment-7187</link>
		<dc:creator>Saurabh S. Pawse</dc:creator>
		<pubDate>Thu, 10 May 2012 11:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=17043#comment-7187</guid>
		<description><![CDATA[Hi,
A much simpler way is to call Class.getMethod() directly to get the Method instance:
Method m = uiComponent.getClass().getMethod(&quot;getClientListeners&quot;,null);
m.invoke(uiComponent);

This way the loop can be avoided.

Regards,
Saurabh]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
A much simpler way is to call Class.getMethod() directly to get the Method instance:<br />
Method m = uiComponent.getClass().getMethod(&#8220;getClientListeners&#8221;,null);<br />
m.invoke(uiComponent);</p>
<p>This way the loop can be avoided.</p>
<p>Regards,<br />
Saurabh</p>
]]></content:encoded>
	</item>
</channel>
</rss>
