当前位置: 代码迷 >> Eclipse >> eclipse诠释规范设置
  详细解决方案

eclipse诠释规范设置

热度:33   发布时间:2016-04-23 12:29:03.0
eclipse注释规范设置

文件注释标签:


/**
* <p>Title: ${file_name}</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: LTGames</p>
* @author linrz
* @date ${date}
* @version 1.0
*/

类型注释标签(类的注释):

/**
* <p>Title: ${type_name}</p>
* <p>Description: </p>
* <p>Company: LTGames</p>
* @author??? linrz
* @date?????? ${date}
*/

字段注释标签:

/** ${field}*/

构造函数标签:

/**
* <p>Title: </p>
* <p>Description: </p>
* ${tags}
*/

方法标签:

/**
* <p>Title: ${enclosing_method}</p>
* <p>Description: </p>
* ${tags}
*/

覆盖方法标签:

/* (no Javadoc)
* <p>Title: ${enclosing_method}</p>
* <p>Description: </p>
* ${tags}
* ${see_to_overridden}
*/

代表方法标签:

/**
* ${tags}
* ${see_to_target}
*/

getter方法标签:

/**
* @return ${bare_field_name}
*/

setter方法标签:

/**
?* @param ${param} the ${bare_field_name} to set
?*/

?

?

本文来自CSDN博客,转载请标明出处http://blog.csdn.net/trwhoya/archive/2008/11/04/3220296.aspx

  相关解决方案