3

Is there a way to generate Javadocs that are comparable in functionality to the documentation of the Scala library (done with scaladoc)? In comparison to the JDK documentation done with Javadoc this is lightyears ahead in many respects:

  • there is a search field to look for classes
  • there are switches whether include the inherited classes / interfaces and whether to show only public members
  • you can hide packages / focus on packages easily
  • you can easily decollapse / collapse the actual member description from the list of all members
  • the source is linked

and more. Is there a tool to improve Javadoc at least a little in that direction?

4

1 に答える 1

1

このような高品質のドキュメントを生成するドックレットを私は知りません。

しかし、正しい方向への小さな一歩はjavadoc-search-frame userscriptです。ブラウザーにインストールすると、ナビゲートするすべての JavaDoc にシンプルで機能的な検索フレームが表示されます。

それを適切なJavaDocビルドに含めることは、それほど難しいことではありません。

于 2013-09-11T15:52:39.580 に答える