myeclipse设置注释模板
设置注释模板的入口:Window->Preference->Java->CodeStyle->CodeTemplate然后展开Comments节点就是
/**
*项目名称:${project_name}
*类名称:${type_name}
*类描述:暂无
*创建人:xx
*创建时间:${date}${time}
*修改人:xx
*修改时间:${date}${time}
*修改备注:
*@versiondss-c2.2
*XX股份有限公司
*版权所有翻版必究
*/
文件(Files)注释标签:
/**
*@Title:${file_name}
*@Package${package_name}
*@Description:${todo}(用一句话描述该文件做什么)
*@authorA18ccmsA18ccms_gmail_com
*@date${date}${time}
*@versionV1.0
*/
类型(Types)注释标签(类的注释):
/**
*@ClassName:${type_name}
*@Description:${todo}(这里用一句话描述这个类的作用)
*@authorA18ccmsa18ccms_gmail_com
*@date${date}${time}
*
*${tags}
*/
字段(Fields)注释标签:
/**
*@Fields${field}:${todo}(用一句话描述这个变量表示什么)
*/
构造函数标签:
/**
*<p>Title:</p>
*<p>Description:</p>
*${tags}
*/
方法(Constructor&Methods)标签:
/**
*@Title:${enclosing_method}
*@Description:${todo}(这里用一句话描述这个方法的作用)
*@param${tags}设定文件
*@return${return_type}返回类型
*@throws
*/
覆盖方法(OverridingMethods)标签:
/*(非Javadoc)
*<p>Title:${enclosing_method}</p>
*<p>Description:</p>
*${tags}
*${see_to_overridden}
*/
代表方法(DelegateMethods)标签:
/**
*${tags}
*${see_to_target}
*/
getter方法标签:
/**
*@return${bare_field_name}
*/
setter方法标签:
/**
*@param${param}要设置的${bare_field_name}
*/