gpt4 book ai didi

java - 如果缺少方法描述则显示警告

转载 作者:行者123 更新时间:2023-11-30 07:02:49 24 4
gpt4 key购买 nike

在我们的代码库中,我看到了很多类似的方法:

/**
* @param tagID
* @param startDate
* @param endDate
* @param estimated
* @return
* @throws ServerException
*/
List<String> generateMaster(int tagID, Date date)
throws ServerException, BusinessException;

虽然有 javadoc,但缺少方法的描述。因此,javadoc 显然是无用的。在 checkstyle 中,我该怎么做才能对上述情况发出警告。

<property name="allowMissingJavadoc" value="false"/>

这只检查是否存在 javadoc。它将上述方法标记为 present 因为 javadoc 存在。但是实际上缺少方法声明。

PS:标记 eclipse 和 intellij。我对任何能告诉我包含上述方法数量的解决方案都很满意,比如 javadocs

最佳答案

这篇文章可能为时已晚 - 但任何其他想要找到答案的人,请为每个元素添加描述,例如

/**
* @param tagID - ID of the tag
* @param startDate - Starting Date
* @param endDate - End date
* @param estimated <-- this is not the param - should be removed or fix doc
* @return <-- missing return param and description
* @throws ServerException -- throws server exception
*/

关于java - 如果缺少方法描述则显示警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28831159/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com