<?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>web development helpdesk &#187; method</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/method/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to call a method using reflection</title>
		<link>http://helpdesk.objects.com.au/java/how-to-call-a-method-using-reflection?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-call-a-method-using-reflection</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-call-a-method-using-reflection#comments</comments>
		<pubDate>Sat, 23 Oct 2010 04:12:38 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[reflection]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1603</guid>
		<description><![CDATA[One thing reflection allows you to do is call a method dynamically at runtime. The following example shows how this can be achieved // Get the Class instance of the object we want to call method on Class clazz = o.getClass(); // Get the method we want to call // For this example we&#039;ll call [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-call-a-method-using-reflection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get all methods in a class using reflection?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-get-all-methods-in-a-class-using-reflection?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-get-all-methods-in-a-class-using-reflection</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-get-all-methods-in-a-class-using-reflection#comments</comments>
		<pubDate>Sat, 14 Mar 2009 08:23:50 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[reflection]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=888</guid>
		<description><![CDATA[Reflection allows you to find all the methods of a class using the Class class and it&#8217;s getMethods() methods. Clearest way to explain is with an example. String className = &#34;java.lang.String&#34;; Class clazz = Class.forName(className); Method[] methods = clazz.getMethods(); for (Method method : methods) { String methodName = method.getName(); System.out.println(methodName); } Related posts: How to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-get-all-methods-in-a-class-using-reflection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix &#8220;Cannot make a static reference to the non-static method&#8221;</title>
		<link>http://helpdesk.objects.com.au/java/how-to-fix-cannot-make-a-static-reference-to-the-non-static-method?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-fix-cannot-make-a-static-reference-to-the-non-static-method</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-fix-cannot-make-a-static-reference-to-the-non-static-method#comments</comments>
		<pubDate>Wed, 24 Dec 2008 00:28:00 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=691</guid>
		<description><![CDATA[Static methods cannot call non-static methods. An instance of the class is required to call its methods and static methods are not accociated with an instance (they are class methods). To fix it you have a few choices depending on your exact needs. /** * Will not compile */ public class StaticReferenceToNonStatic { public static [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-fix-cannot-make-a-static-reference-to-the-non-static-method/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

