?
myeclipse自定义java注释:
Window->Preference->Java->Code Style->Code Template
然后展开Comments节点就是所有需设置注释的元素
-----------------
文件(Files)注释标签:
/**?
* @Project: ${project_name}
* @Title: ${file_name}
* @Package ${package_name}
* @Description: ${todo}
* @author shenyanghong ahong2011@gmail.com
* @date ${date} ${time}
* @Copyright: ${year} www.1000chi.comInc. All rights reserved.
* @version V1.0?
*/
类(Types)注释标签(类的注释):
/**
?* @ClassName ${type_name}
?* @Description ${todo}
?* @author shenyanghong ahong2011@gmail.com
?* @date ${date}
?* ${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}
*/
?
参考:
--------------------------
设置java注释模板