genjavadoc
genjavadoc copied to clipboard
Links to classes in other packages are only possible with fully qualified package names
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. <== this line won't work
/** Uses a [[my.core.java.comparison.Comparator]] as compiler for the DriverTask being built. <== with fully qualified name it works
...
*/
def withComparator[C, R](id: String, comparator: Comparator[C, R]): this.type = {
...
}
}
PR would be welcome
Sorry, I'm new to this. What mean PR?
ktoso [email protected] schrieb am Mi., 25. Apr. 2018, 18:37:
PR would be welcome
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/lightbend/genjavadoc/issues/134#issuecomment-384352339, or mute the thread https://github.com/notifications/unsubscribe-auth/AdZ6ppSp-I4no12TAPTWCnYTAxcbIlCtks5tsKZmgaJpZM4TjJMT .
What mean PR?
pull request, https://help.github.com/articles/about-pull-requests/
(hello, welcome!)
Sorry for the acronym used, yes pull request :-) I.e. if you have some time and would like to see this solved, it would help a lot if you could give it a shot implementing it. We only maintain this plugin on a minimum-per-need basis that gets our projects to work well etc.