If I have a class like this:
public class Whatever
{
public void aMethod(int aParam);
}
is there any way to know that aMethod uses a parameter named aParam, that is of type int?
|
If I have a class like this:
is there any way to know that
| |||||||
feedback
|
|
To summarize:
For the sake of writing autocomplete functionality for an editor (as you stated in one of the comments) there are a few options:
| ||||
|
feedback
|
|
You can retrieve the method with reflection and detect it's argument types. Check http://java.sun.com/j2se/1.4.2/docs/api/java/lang/reflect/Method.html#getParameterTypes%28%29 However, you can't tell the name of the argument used. | |||||||||||
feedback
|
|
The Paranamer library was created to solve this same problem. It tries to determine method names in a few different ways. If the class was compiled with debugging it can extract the information by reading the bytecode of the class. Another way is for it to inject a private static member into the bytecode of the class after it is compiled, but before it is placed in a jar. It then uses reflection to extract this information from the class at runtime. http://paranamer.codehaus.org/ I had problems using this library, but I did get it working in the end. I'm hoping to report the problems to the maintainer. | |||
|
feedback
|
No, that's not possible. This information (the parameter name, obviously not the parameter type as most other responders here seem to misinterpret) is already lost after compiling. Only the method name, parameter types and return type are known, as outlined in the Sun's reflection tutorial and Why would you need to know about it then? The only way to know about them is parsing the sourcecode or the Javadocs. | |||||||||||||||||||
feedback
|
|
It is possible and Spring MVC 3 does it, but I didn't take the time to see exactly how.
Taken from the spring documentation | |||
|
feedback
|
|
Check Obtaining Method Type Information from the Java Tutorial. | |||||||||||||
feedback
|
|
Parameter names are only useful to the compiler. When the compiler generates a class file, the parameter names are not included - a method's argument list only consists of the number and types of its arguments. So it would be impossible to retrieve the parameter name using reflection (as tagged in your question) - it doesn't exist anywhere. However, if the use of reflection is not a hard requirement, you can retrieve this information directly from the source code (assuming you have it). | |||||
feedback
|
|
To add my 2 cents; parameter info is available in a class file "for debugging" when you use javac -g to compile the source. And it is available to APT but you'll need an annotation so no use to you. (Somebody discussed something similar 4-5 years ago here: http://forums.java.net/jive/thread.jspa?messageID=13467&tstart=0 ) Overall in-short you can't get it unless you work on Source files directly (similar to what APT does at compile time). | |||
|
feedback
|
|
While it is not possible (as others have illustrated), you could use an annotation to carry over the parameter name, and obtain that though reflection. Not the cleanest solution, but it gets the job done. Some webservices actually do this to keep parameter names (ie: deploying WSs with glassfish). | |||
|
feedback
|