Eclim provides the :JavaDocComment command which will add or update the javadoc comments for the element under the cursor.
Note
The insertion of javadoc comments is done externally with Eclipse and with that comes a couple caveats.
Eclim Settings
Eclim supports searching of javadocs just like you would search the source code.
The only difference is that you use :JavaDocSearch instead of :JavaSearch.
The results will be displayed in a window and you can simply hit <enter> on an entry to open it using the browser you configured via g:EclimBrowser.
The locations of the javadocs are determined via your Eclipse project’s .classpath file. For each library entry you can define a javadoc attribute that points to the base url of the javadoc (http, file, etc).
<classpathentry kind="lib" path="lib/hibernate-3.0.jar">
<attributes>
<attribute value="http://hibernate.org/hib_docs/v3/api" name="javadoc_location"/>
</attributes>
</classpath>
Vim Variables
g:EclimJavaDocSearchSingleResult - Determines what action to take when only a singe result is found.
Possible values include:
To run the javadoc utility on your source code, you may use the :Javadoc command, which with no arguments will execute javadoc against all your source code (as specified by any optional settings described below).
If you wish to run javadoc only against one or more files, you can supply the project relative paths as arguments to the :Javadoc command and only those files will be used.
Note
Please note that this command is not intended to be a full replacement for javadoc support provided by more comprehensive build tools like ant or maven.
Eclim Settings