I have developed one blackberry simple application and wants to generate javadocs of my source code. How to generat开发者_JAVA技巧e javadocs of my java file?
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
.
精彩评论