myeclipse自动设置类和方法的注释(快捷键)

类的注释
第一步:找到Window→Preferences→java→Code Style→Code Templates→Comments→Types
第二步:编辑Pattern,我一般用的模板
/**
* @title ${type_name}
* @Company  启鹏飞扬
* @author sgc
* @data ${time}
*/
Title后边可以自己编辑,也可以点击Insert Variable自己选择插入,其他同理。
第三步:使用方式,“/**” 然后敲回车键,或者直接Shift+Alt+J
方法的注释
编辑Methods,模板
/**
* @title: ${enclosing_method}
* @Descripyion: ${todo} (用一句话描述方法作用)
* @data: ${time}
* @author: sgc
* @param: ${tags}
* @return: ${return_type}
* @throws:
*/
使用“/**”然后敲回车键

你可能感兴趣的:(myeclipse自动设置类和方法的注释(快捷键))