Czy istnieje sposób, aby NetBeans automatycznie tworzył nawiasy w osobnej linii?

Kiedy na przykład tworzę nową klasę, otrzymuję to:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package helloworld;

/**
 *
 * @author Sergio
 */
public class WordManipulations{        
}

I nienawidzić to, gdy nawiasy są umieszczone w ten sposób. Czy istnieje sposób na stworzenie takich rzeczy:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package helloworld;

/**
 *
 * @author Sergio
 */
public class WordManipulations 
{

}

questionAnswers(2)

yourAnswerToTheQuestion