views:

67

answers:

1

What does this mean?

/**
 * ...
 * @author ...
 */

and now do i use it?

thanks! (tried google-ing first, but wildcards are throwing it off)

+8  A: 

They are Javadocs comments, a format to write code comments that started with Java, and is some other languages picked the syntax.

There are parsers available that will read your code files and generate HTML output from them, to easily document an API.

pgb
Thanks so very much for your quick and accurate answer!
billy
Actually they are called asdoc comments in actionscript. ASDoc, like javadoc, comes free with the flex framework.
Amarghosh