gnlogic
gnlogic

Reputation: 1034

UI diagram layout

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

Answers (3)

Frederic Morin
Frederic Morin

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

Javamann
Javamann

Reputation: 2902

yWorks. http://www.yworks.com/en/index.html

Upvotes: 2

Dónal
Dónal

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

Related Questions