Thanks Krishnan, that link was helpful. But this is still confusing to a newcomer, it appears the JavaDoc JARs are broken up by components, the individual drivers, Selenium API, Selenium server, Selenium Java (bindings?).
So in terms of general usage that maps or matches the web SVN repo:
where you get the whole JavaDoc of the whole project tree, is there a JAR for that or one has to compile/package themselves?
And a second question for the community, I'm just a novice user of Eclipse, so anyone able to get WebDriver JavaDoc autocompletion tooltip working on Eclipse? We use the standalone server JAR with Eclipse as our Java bindings (since we also use the same JAR for RemoteWebDriver/server and Grid2 runs).
Attempting to add external JAR reference to JavaDoc JAR for selenium-api-2.28.0-javadoc.jar or selenium-java-2.28.0-javadoc.jar or selenium-server-2.28.0-javadoc.jar to Eclipse didn't allow for the autocomplete JavaDoc tooltip to work. So either I'm using the wrong JARs, or I'm not setting it up correctly.
On a side note, I was working with some other simpler Java library (less classes than WebDriver) and I had to compile from sources, which included JavaDocs, so I just packaged it all in a JAR (714k including class files & JavaDoc), and in Eclipse it found the JavaDoc and autocomplete tooltip works. Just wondering if the JavaDoc has to be packaged with the class files or follow some same naming convention as the class JAR for Eclipse to be able to find the matching JavaDoc.
Would like to here tips from others who have successfully configured WebDriver JavaDoc tooltip in Eclipse, if anyone has done so at all.