genjavadoc icon indicating copy to clipboard operation
genjavadoc copied to clipboard

A compiler plugin for generating doc’able Java source from Scala source

Results 34 genjavadoc issues
Sort by recently updated
recently updated
newest added

``` package my.core.java.comparison.builder   import my.core.java.comparison.Comparator   /** Constructs a comparison DriverTask */ class TaskBuilder(builder: DriverBuilder) extends my.core.java.common.builder.TaskBuilder { /** Uses a [[Comparator]] as compiler for the DriverTask being built.

help wanted

Dealing with errors in javadoc generation is difficult due to a logging bug in the plugin. Whenever an error occurs that makes the javadoc command fail lots of issues, that...

help wanted

e.g. ``` /** Constructs a Driver by creating and adding one or more testing tasks. * * @param completeConfig The complete configuration * @param context The driver context with data...

I'm not sure if this is the right place to report the issue, but maybe you can help me. We are using `genjavadoc` in Apache Flink (see [pom.xml](https://github.com/apache/flink/blob/master/pom.xml#L599)). We recently...

From https://github.com/typesafehub/genjavadoc/commit/d898589ea9a4a9d95f671936d94ca70d0c8e576e: > The reason seems to be that starting from Scala 2.12 positions are reported in a way that puts the original position on the private `$lzycompute` method instead...

I have a trait `ObjectStorage` that doesn't have a companion object but I'm getting the error: ``` Companions 'trait ObjectStorage' and 'object ObjectStorage' must be defined in same file ```...

Hi, I have define a annotation class which like deprecate class. I use it in the head of each scala class as below @deprecated @myAnnotation class XXX { } the...

The bad news: I broke the plugin in https://github.com/scala/scala/pull/5469 The good news: there's now a hook method that can be overridden without copy/pasting from the compiler code base. Here's a...

We recently deprecated setLabelCol in ChiSqSelectorModel in Spark (https://github.com/apache/spark/pull/13823): ``` scala /** @group setParam */ @Since("1.6.0") @deprecated("labelCol is not used by ChiSqSelectorModel.", "2.0.0") def setLabelCol(value: String): this.type = set(labelCol, value)...