Eclipse中@author的修改

什么东西均可能会被忘掉,我这种记性很差的就更容易忘了。换了电脑后eclipse中的@author变了,因而找了下修改@author的方法:
1. 在eclipse.ini中添加
-vmargs
-Duser.name={author name}
记得必定要在-vmargs以后,不然无效。

2. 设置eclipse参数
windows-->preference
Java-->Code Style-->Code Templates
code-->new Java files
原来的内容是:
${filecomment}
${package_declaration}

${typecomment}
${type_declaration}
添加自定义内容,添加以后内容以下:
${filecomment}
${package_declaration}
/**
* @author 做者 E-mail:
* @version 建立时间:${date} ${time}
* 类说明
*/
${typecomment}
${type_declaration}

3. 设置eclipse参数
windows-->preference
Java-->Code Style-->Code Templates
Comments-->files
按照须要修改配置,而且保证上面项的配置中有${filecomment}这项。windows

相关文章
相关标签/搜索