Когда я создаю новый класс, например, я получаю это:
/*
* 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
{
}