Reputation: 1152
I'm a java developer new with uml modeling. I wanna create a complete web application (backend+db+jms+security +ui) deployable to an application server by using only UML. Despite I didn't understand what really is meta-modeling I started using Umbrello, visual paradigm and eclipse emf. I've read just a little about omg's xmi standard. So supponing to have an xmi file I didn't understand how to generate java code. Eclipse emf for example would generate "strange" java code. Do I need to write my own xmi parser?
Upvotes: 1
Views: 208
Reputation: 29
Eclipse EMF generator generates code for saving and loading your model, so there is no need to write your own parser or serializer.
EMF allows you to generate a maximum of four different plugins for a defined model:
This is a good article if you need any help with EMF: What every Eclipse developer should know about EMF. http://eclipsesource.com/blogs/tutorials/emf-tutorial/
Upvotes: 1