(轉)MyEclipse自定義註釋
一、修改進入路徑:
Window->Preference->Java->Code Style->Code Template->Comments
二:編輯自定義註釋
檔案 (Files) 註釋標籤:
/** * @工程名 : ${project_name} * @檔名 : ${file_name} * @工具包名:${package_name} * @功能描述: ${todo} * @建立人 :陳澤俊 * @建立時間:${date} ${time} * @版本資訊:V1.0 */
類 (Types) 註釋標籤(類的註釋):
/** * @類 名: ${type_name} * @功能描述: ${todo} * @作者資訊: 陳澤俊 * @建立時間: ${date}${time} * ${tags} * @修改備註: */
欄位 (Fields) 註釋標籤:
/** * @Fields ${field} : ${todo} */
建構函式(Constructor )標籤:
/** * <p>Title: </p> * <p>Description: </p> * ${tags} */
方法 (Methods) 標籤:
/** * @Title : ${enclosing_method} * @功能描述: ${todo} * @設定檔案:${tags} * @返回型別:${return_type} * @throws : */
覆蓋方法 (Overriding Methods) 標籤:
/** ( 非 Javadoc) * <p>Title: ${enclosing_method}</p> * <p>Description: </p> * ${tags} * ${see_to_overridden} */
代表方法 (Delegate Methods) 標籤:
/** * ${tags} * ${see_to_target} */
getter 方法標籤:
/** * @return ${bare_field_name} */
setter 方法標籤:
/** * @param ${param} 要設定的 ${bare_field_name} */