myeclipse 自动添加文件头注释

 通过菜单 Window->Preference 打开参数设置面板,然后选择: 
1.Java -> Code Style -> Code     Templates 
2.在右侧选择Comments,将其中的Files项,然后选右边的"Edit",进入编辑模式: 
3.进入编辑模式后就可以自定义注释了。另外可以插入一些变量,如年、日期等等。 
4.最后,确保 Code -> New Java files 中有:"${filecomment}"

以下是我的内容

  
  
  
  
  1. ${filecomment}  
  2. ${package_declaration}  
  3. /**  
  4. * @author 乔磊  
  5. * @version 创建时间:${date} ${time}  
  6. * 类说明  
  7. */  
  8. ${typecomment}  
  9. ${type_declaration}  

 

你可能感兴趣的:(MyEclipse,注释,休闲,自动添加,文件头注释)