Мне любопытно, будет ли Doxygen анализировать комментарии Javadoc?- то есть, принимает ли doxygen что-то подобное:
/**
Greet with a "Hello" message.
@param a string containing the name of the person or entity
@ret return a string containing "Hello" and the name of the greeted person or entity.
*/
public String sayHello(string name)
{
return "Hello" + name;
}
И еще, есть ли более правильный способ сделать эти комментарии, стиль doxygen?