Kashif Ilyas
Kashif Ilyas

Reputation: 136

how to generate javadocs of my blackberry java files

I have developed one blackberry simple application and wants to generate javadocs of my source code. How to generate javadocs of my java file?

Upvotes: 0

Views: 138

Answers (1)

Paŭlo Ebermann
Paŭlo Ebermann

Reputation: 74750

I don't know much about blackberry, but if they are (at least syntactically) normal Java source files, you can use this command:

javadoc -d outputdir -sourcepath src  my.first.package my.second.package ...

Have a look at the Javadoc documentation for more options. It might be that you have to add the blackberry library jar files with -classpath.

Upvotes: 2

Related Questions