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



title
5.6.2.8.3 Doxygens

Blank lines before Doxygen

Blank lines before Doxygen

Sets number of blank lines before Doxygen comments.


Set 1 blank line before Doxygen comments:

                                       
/**                                     
 * Calculates something.                
 *                                      
 * @param i   value i                   
 */                                     
public void test(int i)                 
{                                       
    ...                                 
}                                       


Set 2 blank lines before Doxygen comments:

                                       
                                       
/**                                     
 * Calculates something.                
 *                                      
 * @param i   value i                   
 */                                     
public void test(int i)                 
{                                       
    ...                                 
}                                       



Blank line after Doxygen

Blank line after Doxygen

Sets number of blank lines after Doxygen comments.


Set 1 blank line after Doxygen comments:

/**                                     
 * Calculates something.                
 *                                      
 * @param i   value i                   
 */                                     
                                       
public void test(int i)                 
{                                       
    ...                                 
}                                       


Set 1 blank line before and after Doxygen comments:

                                       
/**                                     
 * Calculates something.                
 *                                      
 * @param i   value i                   
 */                                     
                                       
public void test(int i)                 
{                                       
    ...                                 
}