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

This method doesn't seem to show up in `javap`, so it looks like a bug in genjavadoc that this now shows up? _Originally posted by @raboof in https://github.com/lightbend/genjavadoc/pull/313#discussion_r892010275_

bug

I have an object definition `MyName` who has a nested object definition also named `MyName`. This seems to terminate the javadoc generation abruptly (`javadoc exited with exit code 1`). Here's...

## problem If a case class does not have a companion object, the following error message appears: ``` error: illegal combination of modifiers: abstract and static [ERROR] static public abstract...

I recently switched from using JavaDoc `{@link ...}` syntax in my ScalaDoc comments to using ScalaDoc `[[..]]` syntax, after learning that genjavadoc transforms ScalaDoc links into JavaDoc links. However, now,...

enhancement

There are Chinese annotations in my code, but the generated Java annotations show exceptions and the final data can not be converted into Chinese. `* @param dictCode 标识码` `* param:...

bug
help wanted

I can't compile: My environment is Maven3.6 + scala2.12.8 + java1.8 For example, I have a class like this: `case class AreaModel(code: String, name: String, level: String, parent: String, code_short:...

https://github.com/GeTOUO/genjavadoc-error-demo at 3c6d2fae3229ca7b84fc21345e8dd6241b27a1d2 ``` /** * test model * @param field some field des */ case class ScalaModel(field: String) ``` produced alongside the `ScalaModel` also a `ScalaModel$`: ``` public class...

bug

When a method is defined in a trait (i.e. `TraitWithMethod`), and that trait is mixed into an object (i.e. `MethodFromTrait`: ``` trait TraitWithMethod { def theMethod(): Int = 42 }...

I have a package structure which has scala files but provides Java API as well. But everything is written in scala. I am using genJavaDoc to generate java documentation. It...