This page is no longer maintained — Please continue to the home page at www.scala-lang.org

how to express nested objects as scaladoc entity links?

No replies
wookietreiber
Joined: 2011-04-24,
User offline. Last seen 42 years 45 weeks ago.

hi,

given code like this:

package foo

object bar {
object foobar
}

trait baz {
/** Returns [[foo.bar.foobar]].
*
* @see [[foo.bar.foobar]]
*/
def foobar = foo.bar.foobar
}

and I want, as you can see, an entity link to a nested object, but the output,
i.e. scaladoc in a browser, shows no link but just plain "foo.bar.foobar"

how can I express this that the doc will show an actual link?

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland