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
{
}