displaying argument names with dot operator
Hi,
When using an IDE for development, the dot operator for object methods will pop up a window that define the different sets of parameters and sometimes the argument names one can use (I'm not sure when I've seen that names, but I am certain that I have).
My question is how can I define those argument names in the classes that I build myself so that when I use the dot operator the names of the arguments are displayed? Does is have to do with javadocs? It would obviously be a big help as I would avoid having to find the code to see what the parameters are.
Thanks

