A class looks as follow:

/**
 * 
 * @author Thomas
 * 
 */
public class PriceIncrease {
        /** Logger for this class and subclasses */
        protected final Log logger = LogFactory.getLog(getClass());

        private int percentage;
        
        /**
         * 
         * @param i Percentage
         * My comments: This function sets ...
         */
        public void setPercentage(int i) {
                percentage = i;
                logger.info("Percentage set to " + i);
        }
...
}

After I used maven site, the JavaDocs are generated. But as I open this
class in javadocs, I see the followings:

setPercentage
public void setPercentage(int i)Parameters:
i - Percentage

I can't see the text of MyComments, why?


-- 
View this message in context: 
http://www.nabble.com/A-question-about-maven-site-and-the-created-JavaDocs-tp18525606p18525606.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to