Eclipse UML Plugin with Java Code Generation

Does anyone know of a good (read: Free) Eclipse UML plugin that can also generate code? If not, does anyone know of good Eclipse UML plugins?

EDIT : I am running the Eclipse IDE on Fedora Linux

TIA

Noob

+6
source share
5 answers

eUML is free (read the license for restrictions): http://www.soyatec.com/euml2/features/

Also Jupe: http://jupe.binaervarianz.de/

+2
source

I was fortunate enough to create Java-based UML diagrams with ObjectAid: ObjectAid download page .

This was done for Eclipse, so it should work. However, I don't know if this generates code ... but it is beautiful!

The site describes how to install it, and part of the UML diagrams is absolutely free!

Hope this helps!

+2
source

Try Acceleo . Very flexible.

+1
source

Netbeans comes with a free version of the UML plugin that generated the code. The latest version with the UML plugin was 6.7. After that they stopped. you can download this and then install the plugin for it. You can check STARUML

0
source

I agree with Jordi Cabot. you can mainly use the Eclipse Modeling Framework with one of the existing model editors (e.g. Papyrus, TopCased, etc.). You can then write your own generation workflow with Acceleo, an implementation of Eclipse for MOF in the Text Transformation Language. It allows you to dive into the model and generate the required text (e.g. Java, C ++, C, python, Matlab, etc.).

In the beginning it may look a little strange and hard to understand, but it is the best environment that I know for this purpose. It is fully compliant with OMG standards.

Bye

0
source

Source: https://habr.com/ru/post/885956/


All Articles