vote up 1 vote down star

I am using apache ant to generate javadoc for my project. I have a number of classes in one of my packages and I only want to show one. How do I do this? Here is my current code.

<javadoc
    sourcepath="jig-engine/src"
    destdir="${target.path}/docs/javadoc/"
    packagenames="jig.engine.util.Vector2D" >
</javadoc>

(simplified for clarity)

flag

If a class is private, documentation will not be generated. My I ask why you don't want to generate documentation for these classes? If it's because you don't want people accessing them, make them protected or private or change how they are accessed. Security by obscurity doesn't work. – Malfist Jan 30 at 19:33
+1 to Malfist; I can think of no circumstances in which limiting the Javadocs is the best solution to a problem (in my experience, at least). – mmyers Jan 30 at 19:58
1  
How about if you are making a curriculum for beginning java students and don't want them confused by classes they don't need for the assignment? – James Van Boxtel Jan 30 at 20:07

1 Answer

vote up 2 vote down check

Use the sourcefiles parameter instead of sourcepath:

<javadoc
    sourcefiles="jig-engine/src/path/to/your/file.java"
    destdir="${target.path}/docs/javadoc/">
</javadoc>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.