扩展Eclipse在悬停时显示的文档

时间:2014-02-14 20:44:49

标签: c++ eclipse

我正在一个所有评论都是这种形式的项目中工作:

/** Function definition
 *******************************************************************************
 * @param param1 description
 *
 * @return foo   description
 */
/*
 * REVISION HISTORY:
 *    John Doe, February 14, 2014
 *       created
 ******************************************************************************/
 int bar(int param1)
 {
     ....
 }

当我将鼠标悬停在函数名称(bar)上时,Eclipse仅显示注释的一部分,其中包含修订更改以及函数体:

/*
 * REVISION HISTORY:
 *    John Doe, February 14, 2014
 *       created
 ******************************************************************************/
 int bar(int param1)
 {
     ....
 }

是否有可能使Eclipse也显示注释的上半部分(实际文档)?

0 个答案:

没有答案