Reputation: 209
I want to order my application for documention. this any tool that in java that support in this?
I know and use java doc. I want to "draw" my application. to see all the connections and "tree" of classes between them. Do anybody know if this option is exsists in any Ide or platform?
Upvotes: 1
Views: 88
Reputation: 143
You can use eclipse(or any other IDE) to Java doc your methods and classes, and when you want to document it si,ply go to Project - Genereate javadoc
Upvotes: 1
Reputation: 115378
Do you probably mean javadoc? In this case add special comments to your classes and methods that start with /**
instead of regular /*
and then use command line utility javadoc
or higher level tools provided by ant
, maven or other build tools.
Upvotes: 0