您的位置:首页 > 编程语言 > Java开发

MyEclipse/eclipse 添加作者、注释、版本、时间等

2016-09-07 09:39 447 查看
Code Templates

1.Comments->Files



/**
* @Title ${file_name}
* @description ${todo}
* @time ${date} ${time}
* @author wyz
* @version 1.0
**/


2.Comments->Types



/**
* @Title ${file_name}
* @description ${todo}
* @time ${date} ${time}
* @author wyz
* @version 1.0
**/ 


3.Comments->Methods



/**
* @Title: ${enclosing_method}
* @Description:
* ${tags}
* @return ${return_type}
* @author wyz
* @date ${date}${time}
*/


4.Code->New Java files



${filecomment}
${package_declaration}
/** * @Title ${file_name} * @description ${todo} * @time ${date} ${time} * @author wyz * @version 1.0 **/
${typecomment}
${type_declaration}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: