Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Links to classes in other packages are only possible with fully qualified package names #134

Open
birkhola opened this issue Apr 25, 2018 · 4 comments

Comments

@birkhola
Copy link

birkhola commented Apr 25, 2018

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 = {
    ...
    }
}
@ktoso
Copy link
Contributor

ktoso commented Apr 25, 2018

PR would be welcome

@birkhola
Copy link
Author

birkhola commented Apr 25, 2018 via email

@SethTisue
Copy link
Member

What mean PR?

pull request, https://help.github.com/articles/about-pull-requests/

(hello, welcome!)

@ktoso
Copy link
Contributor

ktoso commented Apr 26, 2018

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.

lrytz added a commit to scala/scala-java8-compat that referenced this issue May 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants