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

[597 byte] By [black_lotusa] at [2007-11-27 3:13:48]
# 1
the IDE will infer them from your source code. that is, you don't have to do anything (try it)
georgemca at 2007-7-12 8:16:18 > top of Java-index,Java Essentials,Java Programming...
# 2
I'm using JBuilder 2006 and it only displays the argument type, but no name.
black_lotusa at 2007-7-12 8:16:18 > top of Java-index,Java Essentials,Java Programming...