开发者

how to generate javadocs of my blackberry java files

开发者 https://www.devze.com 2023-03-03 12:58 出处:网络
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

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消