You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 does get generated for scala classes but package documentation does not get generated for javadoc.
I jave followinf package structure:
com.example.javadsl
javadsl.scala
ILocationService.scala
javadsl.scala looks like this:
package com.example
/**
* Location service API exposed to external world.
*/
package object javadsl {}
When I generate java doc using javaunidoc:doc, it does not generate package documentation.
The text was updated successfully, but these errors were encountered:
Ahh, that would be nice indeed. The plugin would need to place these pacakge comments to a separate package-info.java file which is used to generate the package documentation by the javadoc.
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 does get generated for scala classes but package documentation does not get generated for javadoc.
I jave followinf package structure:
com.example.javadsl
javadsl.scala looks like this:
When I generate java doc using javaunidoc:doc, it does not generate package documentation.
The text was updated successfully, but these errors were encountered: