Details
Description
JavaMethod.getCallSignature() returns the likes of ..
setName(firstName, familyName)
should be ..
setName(java.lang.String, java.lang.String)
Of course, we can't just change this, so lets do a new method:
JavaMethod.getCallSignatureWithTypes() // types and names
JavaMethod.getStrictJavaSignature() // types only a la Java
Activity
Robert Scholte
made changes -
Field | Original Value | New Value |
---|---|---|
Fix Version/s | 1.11 [ 15653 ] | |
Resolution | Won't Fix [ 2 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
According to http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/Method.html#toString() this is exactly what you want. This one has been implementented with
QDOX-151, so I don't think these extra methods are required. Maybe some improvements on the documentation.