genjavadoc
genjavadoc copied to clipboard
A compiler plugin for generating doc’able Java source from Scala source
I'm not sure if this applies to a broader scope, eg to methods or non static fields, but if I have a Java class with a static field: ``` java...
Otherwise thrown exception types are not picked up in the Javadoc causing possible confusion.
I'm trying to get javadoc 8 to be happy with the output of genjavadoc for Apache Spark. A lot works; I've noticed a few issues though. javadoc 8 treats a...
We updated Spark to use genjavadoc 0.10 and found the package private objects are not hidden with strictVisibility switch on. See https://issues.apache.org/jira/browse/SPARK-15006. cc: @jodersky
After running the REPL in an sbt project, there are some artifacts like `$_repl_$init` (in the default package) and packages like `$line1$` left on the classpath. It would be nice...
Currently genjavadoc creates an illegal package declaration `package ;` for the top-level package. This declaration should be omitted.
I don't know if this is possible, but given the overhead of running `genjavadoc` on every compile (which I don't know much about, but it's enough to warrant the Akka...
I was trying to pick up on @mengxr 's branch [1], but I noticed that the current master does not give information about package private classes anymore (except for trait)....
``` scala /** * @inheritdoc */ def eval(service: String): Name = { ... } ``` results in on build by javadoc ``` warning - @inheritdoc is an unknown tag --...