自动生成方法注释:
写完方法后,在该方法上方输入/**后,按下回车键,会自动生成该方法注释。
1
2
3
4
5
6
7
8
|
/**
*
* @param uid
* @return
*/
public
Map<String, String> getSysUserId(String uid) {
}
|
编辑默认注释模板:
1.类注释:Window -> Preferences -> Java -> Code Style -> Code Templates -> Code -> New Java files -> Edit,可自行编辑类注释。
1
2
3
4
5
6
7
8
9
10
|
/**
* @author yangcj
* @version
* 1.0 ${date} ${time}
*/
${filecomment}
${package_declaration}
${typecomment}
${type_declaration}
|
2.方法注释:Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments -> Methods -> Edit,可自行编辑方法注释。
1
2
3
4
5
|
/**
* @author yangcj
* @date ${date} ${time}
* ${tags}
*/
|
保存设置后,再次尝试,如下:
1
2
3
4
5
6
7
8
9
10
|
/**
*
* @author yangcj
* @date 2017-2-27 下午5:24:24
* @param uid
* @return
*/
public
Map<String, String> getSysUserId(String uid) {
}
|
本文转自 ycj7126168 51CTO博客,原文链接:http://blog.51cto.com/developerycj/1901735