在
windows-->preferenceJava-->Code Style-->Code Templatescode-->new Java file点编辑,覆盖原文本:
${filecomment}${package_declaration} /** * @author Luogang * E-mail: 1070130762@qq.com * @date 创建时间:${date} ${time} * @version 1.0 * @parameter * @since * @return */ ${typecomment}${type_declaration}
应用确认;
在Window->Preference->Java->Code Style->Code Template 然后展开Comments节点,可添加注释的类型:
点击edit后,在pattern里按“Alt“+”/”键,选择要添加的种类,例如日期,作者、时间、返回类型等等……
设置好以后,会在上图的pattern下生成相应代码
类型(Types)注释标签(类的注释):
规范:
/** * 类的描述 * @authoryourname * @Time ${data} ${time}
*
*/
构造函数标签(Constructor):
规范:
/** * 构造方法的描述 * @param name * 按钮的上显示的文字 */
方法(Methods)标签:(接口和其实现类的方法,都要加注释)
注释规范:
/** * 为按钮添加颜色 *@param color 按钮的颜色 *@return *@exception (方法有异常的话加) * @author Administrator * @Time ${data} ${time} */