When using Netbeans and let the JavaDoc window popup, it doesn't show the argument names, but either arg0
, arg1
, et cetera, or the first letter of the variable type (for example int i
, boolean b
, float f
, et cetera). The image below shows that behaviour.
As can be seen the Color
class, from package java.awt
,
public Color(ColorSpace cspace, float[] components, float alpha)
is shown as
public Color(ColorSpace cs, float[] floats, float f)
How can I solve this problem?
(Notice that I also want to store the API documentation locally, to decrease waiting time. Can I achieve this too with the above problem solved?)