how to draw automata in java

automata, expression-trees, finite-automata, java, swing

Solution

JGraph is a library you can use that is native to Java and fairly easy to use, or you can generate a `.dot` file and let GraphViz take care of it for you.

Problem

i want to draw an automata with edges and circulaire states, something like this http://pop-art.inrialpes.fr/~girault/Cours/Automates/td5.html, have u an example for that

Original source