user1378187
user1378187

Reputation: 31

How to create data flow diagrams using Java

I'm an engineering student; I studied dataflow graphs. I already made parser using Antlr, but I don't know how to make dataflow diagrams. I read some paper that one can make dataflow graphs using Java. Please help me.

Upvotes: 0

Views: 3937

Answers (2)

user330315
user330315

Reputation:

The NetBeans Visual Library can be used for this:

http://platform.netbeans.org/graph/

You don't need to build a NetBeans platform application (or even use NetBeans) in order to use it: http://java.dzone.com/news/how-create-visual-applications

Upvotes: 1

trashgod
trashgod

Reputation: 205875

JGraph may be used for this, as discussed in review article.

Upvotes: 1

Related Questions