neb1
neb1

Reputation: 209

How to build map of classes in my application?

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

Answers (2)

Oriely
Oriely

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

AlexR
AlexR

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

Related Questions