Reputation: 136
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
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