Jindent - Java Source Code Formatter http://www.jindent.com
 



title
5.6.2.12 Doxygen

Format existing Doxygen comments

Format existing Doxygen comments

Enables formatting of Doxygen comments.



Do not format Doxygen comments and an example could look like:

/*! \brief Brief description.           
           Brief description continued. 
                                        
    Detailed description starts here. */

class Class {                           
    ...                                 
}                                       


Enable formatting of Doxygen comments and an example could look like:

/*!                                     
 *  \brief Brief description.           
 *         Brief description continued. 
 *                                      
 *  Detailed description starts here.   
 */                                     
class Class {                           
    ...                                 
}                                       

See also... See also: Blank lines before Doxygen , Blank line after Doxygen , Delete existing Doxygen comments




Delete existing Doxygen comments

Delete existing Doxygen comments

Enables removing of Doxygen comments.



Do not delete Doxygen comments and an example could look like:

/*!                                     
 *  \brief Brief description.           
 *         Brief description continued. 
 *                                      
 *  Detailed description starts here.   
 */                                     
class Class {                           
    ...                                 
}                                       


Enable removing of Doxygen comments and the same example could look like:

class Class {                           
    ...                                 
}                                       

See also... See also: Blank lines before Doxygen , Blank line after Doxygen , Format existing Doxygen comments