Reputation: 1034
Wanted to generate a UI diagram (with nice layout) depicting relationships amongst network components. Which is the best Java based API to do such layouts with minimum fuss and light codebase.
Upvotes: 2
Views: 1565
Reputation: 8933
Any uml tool should do the work
Take a look at UMLet or NetBeans as UML editors made in Java.
(BTW, Visio Is usually the standard tool for that job)
Upvotes: 0
Reputation: 187499
If you're logging for a Java API that can do layouts (e.g. arrange boxes in a hierarchical fashion without overlap), check out JGraph.
Upvotes: 1