eclipse 注释头

一直使用eclipse进行开发。 今天心血来潮,想让它在我新建的类中,自动插入一些文件头注释。

操作步骤如下:

1,打开Window->Preferences->Java->Code Style->Code Templates

2,展开Configure generated code and comments栏目中的Code项

3,对New Java files选项进行编辑,然后确定即可。

例如:
${filecomment}
${package_declaration}
/**
* @author hunhun1981
*         email: [email protected]
*         blog:  http://blog.csdn.net/hunhun1981
* @date ${date}
*/
${typecomment}
${type_declaration}

 

此后,如果创建新的代码文件,则会在其头部自动加上插入的信息。

你可能感兴趣的:(eclipse 注释头)