How to create javadoc using ubuntu + eclipse in my project

My java code was commented out using the / ** structure for each function. Therefore, I want to automatically create all the documentation using:

Project > Generate javadoc

But by default on eclipse javadoc is not installed. I read a lot of tutorials, but not working for me.

The problem is that I do not know which Javadoc command I should use in linux. In windows, I have to look for javadoc.exe

Does anyone know how to do this?

Thanks in advance.

EDIT 1: SOLUTION Installation on ubuntu:

sudo apt-get install openjdk-6-jdk

And by restarting eclipse, the javadoc appared: / usr / bin / javadoc command works fine. Thanks to everyone.

+5
source share
1 answer

, ​​ OpenJDK. , :

sudo yum install java-1.6.0-openjdk-devel.x86_64

javadoc .

+5

All Articles