当前位置: 代码迷 >> Eclipse >> 【工程轨范】Eclipse注释模板与规范
  详细解决方案

【工程轨范】Eclipse注释模板与规范

热度:63   发布时间:2016-04-23 01:52:26.0
【工程规范】Eclipse注释模板与规范

设置注释模板的入口: Window->Preference->Java->Code Style->Code Template 然后展开Comments节点就是所有需设置注释的元素啦。现就每一个元素逐一介绍:?
文件(Files)注释标签:?

/**???
* @Title: ${file_name}?
* @Package ${package_name}?
* @Description: ${todo}(用一句话描述该文件做什么)?
* @author A18ccms A18ccms_gmail_com???
* @date ${date} ${time}?
* @version V1.0???
*/?

类型(Types)注释标签(类的注释):?

/**?
* @ClassName: ${type_name}?
* @Description: ${todo}(这里用一句话描述这个类的作用)?
* @author A18ccms a18ccms_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?
*/?

覆盖方法(Overriding Methods)标签:?

/* (非 Javadoc)>??????????????? name="methodcomment">?
??? /**???
???? * 此方法描述的是:???
???? * @author: wangxiongdx@163.com???
???? * @version: ${date} ${time}???
???? */???
??? </template>?
??? <template????
??????????????? autoinsert="true"????
??????????????? context="delegatecomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for delegate methods"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.delegatecomment"????
??????????????? name="delegatecomment">?
??? /**???
???? * ${tags}???
???? * ${see_to_target}???
???? */???
??? </template>?
??? <template?
??????????????? autoinsert="false"????
??????????????? context="filecomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for created Java files"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.filecomment"????
??????????????? name="filecomment">?
??? /**???
???? * 文件名:${file_name}???
???? *???
???? * 版本信息:???
???? * 日期:${date}???
???? * Copyright 足下 Corporation ${year}????
???? * 版权所有???
???? *???
???? */???
??? </template>?
??? <template????
??????????????? autoinsert="false"????
??????????????? context="gettercomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for getter method"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.gettercomment"????
??????????????? name="gettercomment">?
??? /**???
???? * ${bare_field_name}???
???? *???
???? * @return the ${bare_field_name}???
???? * @since?? CodingExample Ver(编码范例查看) 1.0???
??? */???
??? </template>?
??? <template????
??????????????? autoinsert="true"????
??????????????? context="overridecomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for overriding methods"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.overridecomment"????
??????????????? name="overridecomment">?
??? /* (non-Javadoc)???
???? * ${see_to_overridden}???
???? */???
??? </template>?
??? <template????
??????????????? autoinsert="false"????
??????????????? context="fieldcomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for fields"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.fieldcomment"????
??????????????? name="fieldcomment">?
??? /**???
???? * ${field}:${todo}(用一句话描述这个变量表示什么)???
???? *???
???? * @since Ver 1.1???
???? */???
??? </template>?
??? <template????
??????????????? autoinsert="false"????
??????????????? context="typecomment_context"????
??????????????? deleted="false"????
??????????????? description="Comment for created types"????
??????????????? enabled="true"????
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.typecomment"????
??????????????? name="typecomment">?
??? /**???
???? * 此类描述的是:???
???? * @author: wangxiongdx@163.com???
???? * @version: ${date} ${time}????
???? */???
??? </template>?
</templates>?
<?xml version="1.0" encoding="UTF-8"?>?
<templates>?
??? <template?
??????????????? autoinsert="false"?
????????????????? context="constructorcomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for created constructors"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.constructorcomment"?
??????????????? name="constructorcomment">?
??? /**?
???? * 创建一个新的实例 ${enclosing_type}.?
???? *?
???? * ${tags}?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="true"?
??????????????? context="settercomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for setter method"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.settercomment"?
??????????????? name="settercomment">?
??? /**?
???? * @param ${param} the ${bare_field_name} to set?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="false"?
??????????????? context="methodcomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for non-overriding methods"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.methodcomment"?
??????????????? name="methodcomment">?
??? /**?
???? * 此方法描述的是:?
???? * @author: wangxiongdx@163.com?
???? * @version: ${date} ${time}?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="true"?
??????????????? context="delegatecomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for delegate methods"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.delegatecomment"?
??????????????? name="delegatecomment">?
??? /**?
???? * ${tags}?
???? * ${see_to_target}?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="false"?
??????????????? context="filecomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for created Java files"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.filecomment"?
??????????????? name="filecomment">?
??? /**?
???? * 文件名:${file_name}?
???? *?
???? * 版本信息:?
???? * 日期:${date}?
???? * Copyright 足下 Corporation ${year}?
???? * 版权所有?
???? *?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="false"?
??????????????? context="gettercomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for getter method"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.gettercomment"?
??????????????? name="gettercomment">?
??? /**?
???? * ${bare_field_name}?
???? *?
???? * @return the ${bare_field_name}?
???? * @since?? CodingExample Ver(编码范例查看) 1.0?
??? */?
??? </template>?

??? <template?
??????????????? autoinsert="true"?
??????????????? context="overridecomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for overriding methods"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.overridecomment"?
??????????????? name="overridecomment">?
??? /* (non-Javadoc)?
???? * ${see_to_overridden}?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="false"?
??????????????? context="fieldcomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for fields"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.fieldcomment"?
??????????????? name="fieldcomment">?
??? /**?
???? * ${field}:${todo}(用一句话描述这个变量表示什么)?
???? *?
???? * @since Ver 1.1?
???? */?
??? </template>?
??? <template?
??????????????? autoinsert="false"?
??????????????? context="typecomment_context"?
??????????????? deleted="false"?
??????????????? description="Comment for created types"?
??????????????? enabled="true"?
??????????????? id="org.eclipse.jdt.ui.text.codetemplates.typecomment"?
??????????????? name="typecomment">?
??? /**?
???? * 此类描述的是:?
???? * @author: wangxiongdx@163.com?
???? * @version: ${date} ${time}?
???? */?
??? </template>?
</templates>?

  相关解决方案