在preference->Java->codestyle->codetemplates->commnets->type
可以编辑如:
1 /** 2 * @author ${user} 3 * @date ${date} 4 * ${tags} 5 */
在java代码中的类上面,按下快捷键alt+shift+j,就会得出如下的效果:
1 /** 2 * @author weizh_000 3 * @date 2016-7-11 4 */ 5 private class test{ 6 // TODO Auto-generated method stub 7 8 }