I'm completely new to Java and the Eclipse IDE. I have background with .NET and Visual Studio. In VS when I want to create a description for a method, I just type three "/" characters and I get an auto-generated comment template, which looks similarly to the example below:
/// <summary>
/// This is my summary. Hope it is helpful. ;)
/// </summary>
/// <param name="item">Description of the item parameter.</param>
/// <returns></returns>
T Add(T item);
So, when somebody uses my method, the IDE will give him/her a hint, which is visualized right on top of the method's name. How can I achieve this in Eclipse, giving descriptions for my Java methods?
You should use /** */ notation:
It's called javadoc: http://en.wikipedia.org/wiki/Javadoc