JavaDoc: How do I use paragraphs?
Hello All,
I'm trying to have my JavaDoc comments appear with a description that can have paragraphs in it, but when I generate the JavaDoc the paragraphs are all put into one. How can I do this?
Example JavaDoc Comments:
/**
* (C) Copyright MyCorp. 2006
* All Rights Reserved
*
* Created on May 2, 2006
*
* Description: This is a test program that does blah..
*
* @author kportner
*/
Example Generated Results:
(C) Copyright MyCorp. 2006 All Rights Reserved Created on May 2, 2006 Description: This is a test program that does blah..
Author:
kportner
How do I keep the paragraphs from being bunched together?
Thanks,
Karl

