Есть ли способ для NetBeans автоматически создавать скобки в отдельной строке?

Например, когда я создаю новый класс, я получаю следующее:

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

package helloworld;

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

ненавидеть это когда скобки расположены таким образом. Есть ли способ заставить его создавать такие вещи:

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

package helloworld;

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

}

Ответы на вопрос(2)

Ваш ответ на вопрос