当前位置: 代码迷 >> Eclipse >> Eclipse中设立自己的注释模板
  详细解决方案

Eclipse中设立自己的注释模板

热度:77   发布时间:2016-04-23 02:27:20.0
Eclipse中设置自己的注释模板
一、创建新Java文件头部注释
windows-->preference
Java-->Code Style-->Code Templates
code-->new Java files
编辑它

${filecomment}
${package_declaration}
/**
* @author 作者
* @version 创建时间:${date} ${time}
* 类说明
*/
${typecomment}
${type_declaration}
  相关解决方案