当前位置: 代码迷 >> Eclipse >> JAVA资料头模版的设置(Eclipse)
  详细解决方案

JAVA资料头模版的设置(Eclipse)

热度:65   发布时间:2016-04-23 01:56:45.0
JAVA文件头模版的设置(Eclipse)
windows->preferences->java->Code Style->Code Templates->comments->Type->edit

输入设置模板:

/**     
* ${file_name} Create on ${date}    
*     
* Copyright (c) ${date} by wilzhang www.conngame.com  
*     
* @author <a href="zwllxs@163.com">wilzhang</a>    
* @version 1.0
*    
*/

注意选择自动添加注释

养成一个规范的习惯是最好的。


选菜单
windows-->preference
Java-->Code Style-->Code Templates
code-->new Java files

选中点编辑

${filecomment}
${package_declaration}
/**
* @author 作者姓名  E-mail: email地址
* @version 创建时间:${date} ${time}
* 类说明
*/
${typecomment}
${type_declaration}




  相关解决方案