我試圖使用@groupname和@group標記組織我的庫API文檔中的類的成員,但它不起作用(我正在使用sbt 0.13 0.11)Scaladoc:@group標記在API文檔中未顯示
我的玩具build.sbt
:
name := "test"
scalaVersion := "2.10.5"
我的玩具代碼src/main/scala/test.scala
:
package test
/** Test class
*
* @groupname print Printer
* @groupname throw Thrower
*/
class TestClass {
/** @group print */
def trivialPrint: Unit = print("Hello")
/** @group throw */
def trivialError: Unit = throw new Exception("Hello")
}
sbt doc
編譯的API文檔,其中我的兩個功能在班級的「價值成員」小組中(參見截圖)。我究竟做錯了什麼?
不錯,非常感謝。我有點害怕答案是RTFM,所以我倍加滿意。有沒有簡單的方法來發現無證的功能?谷歌在這一個失敗了我... – Wilmerton