有 Javadoc 拼写检查器吗?

发布于 2024-10-27 10:29:25 字数 77 浏览 1 评论 0原文

我想知道开源中是否存在 Javadoc 拼写检查器?如果能将其作为 Maven 插件进行插入就太好了,但即使是独立的二进制发行版也可以使用。

I wonder whether a Javadoc spell checker exists somewhere in open source? Would be great to have it pluggable as Maven plugin, but even a standalone binary distribution will work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

够钟 2024-11-03 10:29:25

实际上至少有一个库可以做到这一点: 拼写检查 Doclet

普通Javadoc用法:

javadoc  ^
   -doclet      spellcheck.SpellCheckDoclet ^
   -classpath   "c:\Javasoft\j2sdk1.5.0_06\lib\tools.jar;" ^
   -sourcepath  "c:\Work\dev" ^
   -docletpath  ".;c:\Tools\jazzy-0.5.2\jazzy-core.jar" ^
   -subpackages "jpdf" ^
   ^
   -echo on ^
   -checkHtmlFiles ^
   -dictionary  "/Tools/jazzy-0.5.2/dict/english.0" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.10" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.20" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.35" ^
   -dictionary  "./files/dictionary_java.txt" ^
   -dictionary  "./files/dictionary_jpdf.txt" ^
   -ignoreContaining "_" ^
   -ignoreContaining "." ^
   -echo off ^
   -ignoreFile  "./files/ignoreWords_html.txt" ^
   -ignoreFile  "./files/ignoreWords_gui.txt"

现在你只需要

  1. 安装部署
    库到您的本地存储库
  2. 将上述参数转换为
    javadoc:javadoc mojo
    参数

There actually is at least one library that does that: Spell Check Doclet

Plain Javadoc usage:

javadoc  ^
   -doclet      spellcheck.SpellCheckDoclet ^
   -classpath   "c:\Javasoft\j2sdk1.5.0_06\lib\tools.jar;" ^
   -sourcepath  "c:\Work\dev" ^
   -docletpath  ".;c:\Tools\jazzy-0.5.2\jazzy-core.jar" ^
   -subpackages "jpdf" ^
   ^
   -echo on ^
   -checkHtmlFiles ^
   -dictionary  "/Tools/jazzy-0.5.2/dict/english.0" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.10" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.20" ^
   -dictionary  "/Tools/jazzy-0.5.2/scowl_dict/american-words.35" ^
   -dictionary  "./files/dictionary_java.txt" ^
   -dictionary  "./files/dictionary_jpdf.txt" ^
   -ignoreContaining "_" ^
   -ignoreContaining "." ^
   -echo off ^
   -ignoreFile  "./files/ignoreWords_html.txt" ^
   -ignoreFile  "./files/ignoreWords_gui.txt"

Now you just need to

  1. install or deploy that
    library to your local repository
  2. translate the above parameters to
    javadoc:javadoc mojo
    parameters
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文