博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Eclispe Java代码注释模板
阅读量:5899 次
发布时间:2019-06-19

本文共 1344 字,大约阅读时间需要 4 分钟。

hot3.png

直接将以下内容复制到文本文档中另存为XML文件,注意另存为的XML文件的编码要选择UTF-8,然后到Elipse设置选项中,Java >> Code Style >> Code Templates 中,执行Import,然后Apply应用即可。要使代码自动增加注释,请同时勾选下面的Automatically add comments for new method and types,然后Apply应用即可。模板内容如下:

/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * @return the ${bare_field_name} */
/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * @param ${param} the ${bare_field_name} to set */
/** * @Description: 构造函数描述 * ${tags} */
/**  * @ClassName: ${type_name}  * @Description: 类描述信息  * @author ${user}  * @date ${date} ${time}  */
/**  * @FieldName: ${field}  * @Description:字段描述信息  */
/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} ${return_type} */
/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} * ${see_to_overridden} */
/** * @MethodName: ${enclosing_method} * @Description: 方法说明 * ${tags} * ${see_to_target} */
${filecomment}${package_declaration}${typecomment}${type_declaration}
// ${todo} Auto-generated catch block${exception_var}.printStackTrace();
// ${todo} Auto-generated method stub${body_statement}
${body_statement}// ${todo} Auto-generated constructor stub
return ${field};
${field} = ${param};

转载于:https://my.oschina.net/4k9LCGA/blog/392597

你可能感兴趣的文章
学习者来报道
查看>>
学习:java设计模式—工厂模式
查看>>
解析nginx负载均衡
查看>>
welcome_file_action
查看>>
Nginx负载均衡的实现和调度算法
查看>>
如何进行Android、IOS APP的自动化测试—东舟自动化测试解决方案
查看>>
亦大自学51cto---cisco交换机终端电脑MAC地址追踪
查看>>
我的友情链接
查看>>
android基础之TableLayout布局
查看>>
Linux rpm常用命令
查看>>
(二)、node.js的简单操作
查看>>
windows 8 搜索设置
查看>>
Cannot find module 'xxxxx' 问题
查看>>
android+unity游戏开发基础之场景的切换
查看>>
1. 继承
查看>>
计算器的实现 源码
查看>>
如何优化网站关键词.
查看>>
sql连接问题
查看>>
PPT2003播放多种格式的视频的方法ppt模板制作
查看>>
史上最全的css hack(ie6-9,firefox,chrome,opera,safari)
查看>>