We are about to switch to a new forum software. Until then we have removed the registration on this forum.
hello all,
did anyone come up with a tool to show dependencies in a code graphically like here?
Thanks
Best, Chrisir
You mean a UML diagram? O:-)
I remember IDEs BlueJ & Greenfoot got an internal UML-like generator: :bz
thanks!
I'd rather check for ungood dependencies and unwanted calls that go against the general concept of the sketch I had in mind when designing it
If you are working in an IDE then there may be a plugin-based code diagrammer for you.
...etc.
You could also use a JavaDoc extension (e.g. yWorks UML Docklet), write a script to generate your own custom graph output (e.g. GraphViz), or even hand-edit UML diagrams (e.g. yEd).
Findbugs checks your code for unused stuff etc.
You'd need to run it on the resultant Java file not the .pde
Not sure anything can find unwanted calls though... How would it know that's not what you intended?
thanks a lot! Great!
Comments
You mean a UML diagram? O:-)
I remember IDEs BlueJ & Greenfoot got an internal UML-like generator: :bz
thanks!
I'd rather check for ungood dependencies and unwanted calls that go against the general concept of the sketch I had in mind when designing it
If you are working in an IDE then there may be a plugin-based code diagrammer for you.
...etc.
You could also use a JavaDoc extension (e.g. yWorks UML Docklet), write a script to generate your own custom graph output (e.g. GraphViz), or even hand-edit UML diagrams (e.g. yEd).
Findbugs checks your code for unused stuff etc.
You'd need to run it on the resultant Java file not the .pde
Not sure anything can find unwanted calls though... How would it know that's not what you intended?
thanks a lot! Great!