In Eclipse, I set the Javadoc Location property of my Scala project to file:/D:/EclipseWorkspace/MyProject/target/scala-2.9.1/api , where D:/EclipseWorkspace/MyProject is the location of my Scala project.
Now, if I'm in a Scala file that implements a class / trait, when I type Shift + F2 , Eclipse opens the Scaladoc page of that class / trait. However, this does not work if it is an object, because Eclipse is trying to open <ObjectName>.html , while the name of the file created by Scaladoc is <ObjectName>$.html <ObjectName>.html .
Is there any workaround?
eclipse scala scala-ide scaladoc
dips May 3 '12 at 10:47 a.m. 2012-05-03 10:47
source share